home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 7 / FreshFishVol7.bin / bbs / gnu / libg++-2.6-fsf.lha / libg++-2.6 / libio / iolibio.h < prev    next >
C/C++ Source or Header  |  1994-05-20  |  2KB  |  47 lines

  1. #include "libio.h"
  2.  
  3. /* These emulate stdio functionality, but with a different name
  4.    (_IO_ungetc instead of ungetc), and using _IO_FILE instead of FILE. */
  5.  
  6. extern int _IO_fclose __P((_IO_FILE*));
  7. extern _IO_FILE *_IO_fdopen __P((int, const char*));
  8. extern int _IO_fflush __P((_IO_FILE*));
  9. extern int _IO_fgetpos __P((_IO_FILE*, _IO_fpos_t*));
  10. extern char* _IO_fgets __P((char*, int, _IO_FILE*));
  11. extern _IO_FILE *_IO_fopen __P((const char*, const char*));
  12. extern int _IO_fprintf __P((_IO_FILE*, const char*, ...));
  13. extern int _IO_fputs __P((const char*, _IO_FILE*));
  14. extern int _IO_fsetpos __P((_IO_FILE*, const _IO_fpos_t *));
  15. extern long int _IO_ftell __P((_IO_FILE*));
  16. extern _IO_size_t _IO_fwrite __P((const void*,
  17.                       _IO_size_t, _IO_size_t, _IO_FILE*));
  18. extern char* _IO_gets __P((char*));
  19. extern void _IO_perror __P((const char*));
  20. extern int _IO_puts __P((const char*));
  21. extern int _IO_scanf __P((const char*, ...));
  22. extern void _IO_setbuffer __P((_IO_FILE *, char*, _IO_size_t));
  23. extern int _IO_setvbuf __P((_IO_FILE*, char*, int, _IO_size_t));
  24. extern int _IO_sscanf __P((const char*, const char*, ...));
  25. extern int _IO_sprintf __P((char *, const char*, ...));
  26. extern int _IO_ungetc __P((int, _IO_FILE*));
  27. extern int _IO_vsscanf __P((const char *, const char *, _IO_va_list));
  28. extern int _IO_vsprintf __P((char*, const char*, _IO_va_list));
  29. #ifndef _IO_pos_BAD
  30. #define _IO_pos_BAD ((_IO_fpos_t)(-1))
  31. #endif
  32. #define _IO_clearerr(FP) ((FP)->_flags &= ~(_IO_ERR_SEEN|_IO_EOF_SEEN))
  33. #define _IO_feof(__fp) (((__fp)->_flags & _IO_EOF_SEEN) != 0)
  34. #define _IO_ferror(__fp) (((__fp)->_flags & _IO_ERR_SEEN) != 0)
  35. #define _IO_fseek(__fp, __offset, __whence) \
  36.   (_IO_seekoff(__fp, __offset, (_IO_off_t)(__whence)) == _IO_pos_BAD ? EOF : 0)
  37. #define _IO_rewind(FILE) (void)_IO_seekoff(FILE, 0, 0)
  38. #define _IO_vprintf(FORMAT, ARGS) _IO_vfprintf(_IO_stdout, FORMAT, ARGS)
  39. #define _IO_freopen(FILENAME, MODE, FP) \
  40.   (_IO_file_close_it(FP), _IO_file_fopen(FP, FILENAME, MODE))
  41. #define _IO_fileno(FP) ((FP)->_fileno)
  42. extern _IO_FILE* _IO_popen __P((const char*, const char*));
  43. #define _IO_pclose _IO_fclose
  44. #define _IO_setbuf(_FP, _BUF) _IO_setbuffer(_FP, _BUF, _IO_BUFSIZ)
  45. #define _IO_setlinebuf(_FP) _IO_setvbuf(_FP, NULL, 1, 0)
  46.  
  47.