Provides utilities to print tables.  
More...
Provides utilities to print tables. 
- Note
 - The print functions in this library do not buffer any output. Mixing calls to standard 
printf from stdio.h with the print_xxx functions in fmt, especially on the same output line, may cause garbled output.  
 | 
| file   | fmt_table.h | 
|   | Table extension of the string formatting API. 
  | 
|   | 
◆ print_col_s32_dec()
      
        
          | void print_col_s32_dec  | 
          ( | 
          int32_t  | 
          number,  | 
        
        
           | 
           | 
          size_t  | 
          width  | 
        
        
           | 
          ) | 
           |  | 
        
      
 
Print a table column with the given number as decimal. 
- Parameters
 - 
  
    | number | Number to print in the column  | 
    | width | Width of the column  | 
  
   
 
 
◆ print_col_u32_dec()
      
        
          | void print_col_u32_dec  | 
          ( | 
          uint32_t  | 
          number,  | 
        
        
           | 
           | 
          size_t  | 
          width  | 
        
        
           | 
          ) | 
           |  | 
        
      
 
Print a table column with the given number as decimal. 
- Parameters
 - 
  
    | number | Number to print in the column  | 
    | width | Width of the column  |