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

File: [local] / OpenXM_contrib2 / asir2000 / parse / w_stdio.h (download)

Revision 1.1.1.1 (vendor branch), Fri Dec 3 07:39:12 1999 UTC (24 years, 5 months ago) by noro
Branch: NORO
CVS Tags: RELEASE_20000124, RELEASE_1_1_2, ASIR2000
Changes since 1.1: +0 -0 lines

Imported asir2000 as OpenXM_contrib2/asir2000.

/* $OpenXM: OpenXM_contrib2/asir2000/parse/w_stdio.h,v 1.1.1.1 1999/12/03 07:39:12 noro Exp $ */
int get_line(char *);
void put_line(char *);

int w_filbuf(void);
int w_flushbuf(void);
void w_noflush_stderr(int);

int get_char(void);     
char *get_string(char *s,int n);
int unget_char(int c);
int put_char(int c,FILE *file);
int put_string(char *s,FILE *file);

int w_fgetc(FILE *file);
char *w_fgets(char *s,int n, FILE *file);
int w_ungetc(int c, FILE *file);
int w_fputc(int c, FILE *file);
int w_fputs(char *s, FILE *file);
int w_printf(char *format, ...);
int w_fprintf(FILE *file, char *format, ...);
int w_fflush(FILE *file);

int check_break(void);