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

File: [local] / OpenXM_contrib2 / windows / pari20 / win32 / w_stdio.h (download)

Revision 1.1, Fri Mar 7 07:16:21 2003 UTC (21 years, 2 months ago) by noro
Branch: MAIN
CVS Tags: R_1_3_1-2, RELEASE_1_3_1_13b, RELEASE_1_2_3_12, RELEASE_1_2_3, RELEASE_1_2_2_KNOPPIX_b, RELEASE_1_2_2_KNOPPIX, RELEASE_1_2_2, KNOPPIX_2006, HEAD, DEB_REL_1_2_3-9

Modifications for linking pari-2.0.

#include <stdio.h>

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 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);