Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/include/io/table.h

    rb7fd2a0 r5e962ad  
    4040#include <stddef.h>
    4141#include <stdio.h>
    42 #include <errno.h>
    4342
    4443/** Table metrics */
     
    8382        bool header_row;
    8483        /** Encountered error while writing to table */
    85         errno_t error;
     84        int error;
    8685        /** Table rows */
    8786        list_t rows; /* of table_row_t */
     
    9897} table_t;
    9998
    100 extern errno_t table_create(table_t **);
     99extern int table_create(table_t **);
    101100extern void table_destroy(table_t *);
    102 extern errno_t table_print_out(table_t *, FILE *);
     101extern int table_print_out(table_t *, FILE *);
    103102extern void table_header_row(table_t *);
    104 extern errno_t table_printf(table_t *, const char *, ...);
    105 extern errno_t table_get_error(table_t *);
     103extern int table_printf(table_t *, const char *, ...);
     104extern int table_get_error(table_t *);
    106105extern void table_set_margin_left(table_t *, size_t);
    107106
Note: See TracChangeset for help on using the changeset viewer.