iolibio.h
上传用户:sichengcw
上传日期:2009-02-17
资源大小:202k
文件大小:3k
源码类别:

STL

开发平台:

Visual C++

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