Changeset 5a6cc679 in mainline for uspace/lib/c/include/io/table.h


Ignore:
Timestamp:
2018-01-31T02:21:24Z (8 years ago)
Author:
Jenda <jenda.jzqk73@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a0a9cc2
Parents:
132ab5d1
Message:

Merge commit '50f19b7ee8e94570b5c63896736c4eb49cfa18db' into forwardport

Not all ints are converted to errno_t in xhci tree yet, however it compiles and works :)

File:
1 edited

Legend:

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

    r132ab5d1 r5a6cc679  
    8383        bool header_row;
    8484        /** Encountered error while writing to table */
    85         int error;
     85        errno_t error;
    8686        /** Table rows */
    8787        list_t rows; /* of table_row_t */
     
    9898} table_t;
    9999
    100 extern int table_create(table_t **);
     100extern errno_t table_create(table_t **);
    101101extern void table_destroy(table_t *);
    102 extern int table_print_out(table_t *, FILE *);
     102extern errno_t table_print_out(table_t *, FILE *);
    103103extern void table_header_row(table_t *);
    104 extern int table_printf(table_t *, const char *, ...);
    105 extern int table_get_error(table_t *);
     104extern errno_t table_printf(table_t *, const char *, ...);
     105extern errno_t table_get_error(table_t *);
    106106extern void table_set_margin_left(table_t *, size_t);
    107107
Note: See TracChangeset for help on using the changeset viewer.