Changeset be2a20ac in mainline for uspace/lib/c/include/stdio.h


Ignore:
Timestamp:
2018-06-14T12:59:51Z (6 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0ceeac3
Parents:
a55d76b1 (diff), 80f345c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
Jiri Svoboda <jiri@…> (2018-06-14 12:55:40)
git-committer:
Jiri Svoboda <jiri@…> (2018-06-14 12:59:51)
Message:

Merge scanf family implementation.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/include/stdio.h

    ra55d76b1 rbe2a20ac  
    101101extern int vsnprintf(char *, size_t, const char *, va_list);
    102102
     103/* Formatted input */
     104extern int scanf(const char *, ...);
     105extern int vscanf(const char *, va_list);
     106extern int fscanf(FILE *, const char *, ...);
     107extern int vfscanf(FILE *, const char *, va_list);
     108extern int sscanf(const char *, const char *, ...);
     109extern int vsscanf(const char *, const char *, va_list);
     110
    103111/* File stream functions */
    104112extern FILE *fopen(const char *, const char *);
Note: See TracChangeset for help on using the changeset viewer.