[BACK]Return to w_stdio.h CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / parse

Annotation of OpenXM_contrib2/asir2000/parse/w_stdio.h, Revision 1.1

1.1     ! noro        1: /* $OpenXM: OpenXM/src/asir99/parse/w_stdio.h,v 1.1.1.1 1999/11/10 08:12:34 noro Exp $ */
        !             2: int get_line(char *);
        !             3: void put_line(char *);
        !             4:
        !             5: int w_filbuf(void);
        !             6: int w_flushbuf(void);
        !             7: void w_noflush_stderr(int);
        !             8:
        !             9: int get_char(void);
        !            10: char *get_string(char *s,int n);
        !            11: int unget_char(int c);
        !            12: int put_char(int c,FILE *file);
        !            13: int put_string(char *s,FILE *file);
        !            14:
        !            15: int w_fgetc(FILE *file);
        !            16: char *w_fgets(char *s,int n, FILE *file);
        !            17: int w_ungetc(int c, FILE *file);
        !            18: int w_fputc(int c, FILE *file);
        !            19: int w_fputs(char *s, FILE *file);
        !            20: int w_printf(char *format, ...);
        !            21: int w_fprintf(FILE *file, char *format, ...);
        !            22: int w_fflush(FILE *file);
        !            23:
        !            24: int check_break(void);

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>