Changeset 63088cc1 in mainline for uspace/lib/libc/include/stdio.h


Ignore:
Timestamp:
2008-12-29T13:30:19Z (15 years ago)
Author:
Jiri Svoboda <jirik.svoboda@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1c1002a
Parents:
04b687b
Message:

fgetc(), fputc(), fputs(), fseek().

File:
1 edited

Legend:

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

    r04b687b r63088cc1  
    9090extern void clearerr(FILE *);
    9191
     92extern int fgetc(FILE *);;
     93extern int fputc(int, FILE *);
     94extern int fputs(const char *, FILE *);
     95
     96#define getc fgetc
     97#define putc fputc
     98
     99extern int fseek(FILE *, long, int);
     100
     101#ifndef SEEK_SET
     102        #define SEEK_SET        0
     103        #define SEEK_CUR        1
     104        #define SEEK_END        2
     105#endif
     106
    92107#endif
    93108
Note: See TracChangeset for help on using the changeset viewer.