Changeset 080ad7f in mainline for uspace/lib/libc/include/stdio.h


Ignore:
Timestamp:
2009-06-09T11:10:00Z (15 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
ebe70f1
Parents:
bd8bfcbd
Message:

simple implementation of fdopen() and rewind()

File:
1 edited

Legend:

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

    rbd8bfcbd r080ad7f  
    107107/* File stream functions */
    108108extern FILE *fopen(const char *, const char *);
     109extern FILE *fdopen(int, const char *);
    109110extern int fclose(FILE *);
    110111
     
    113114
    114115extern int fseek(FILE *, long, int);
     116extern void rewind(FILE *);
    115117extern int ftell(FILE *);
    116118extern int feof(FILE *);
Note: See TracChangeset for help on using the changeset viewer.