[BACK]Return to w_stdio.h CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / windows / pari2 / win32com

Annotation of OpenXM_contrib2/windows/pari2/win32com/w_stdio.h, Revision 1.2

1.1       noro        1: #include <stdio.h>
                      2:
                      3: int get_line(char *);
                      4: void put_line(char *);
                      5:
                      6: int w_filbuf(void);
                      7: int w_flushbuf(void);
                      8: void w_noflush_stderr(int);
                      9:
                     10: int get_char(void);
                     11: char *get_string(char *s,int n);
                     12: int unget_char(int c);
                     13: int put_char(int c,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>