Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
1.1 KiB

  1. // cstdio standard header
  2. #pragma once
  3. #ifndef _CSTDIO_
  4. #define _CSTDIO_
  5. #include <yvals.h>
  6. #ifdef _STD_USING
  7. #undef _STD_USING
  8. #include <stdio.h>
  9. #define _STD_USING
  10. #else /* _STD_USING */
  11. #include <stdio.h>
  12. _STD_BEGIN
  13. using ::size_t; using ::fpos_t; using ::FILE;
  14. using ::clearerr; using ::fclose; using ::feof;
  15. using ::ferror; using ::fflush; using ::fgetc;
  16. using ::fgetpos; using ::fgets; using ::fopen;
  17. using ::fprintf; using ::fputc; using ::fputs;
  18. using ::fread; using ::freopen; using ::fscanf;
  19. using ::fseek; using ::fsetpos; using ::ftell;
  20. using ::fwrite; using ::getc; using ::getchar;
  21. using ::gets; using ::perror;
  22. using ::putc; using ::putchar;
  23. using ::printf; using ::puts; using ::remove;
  24. using ::rename; using ::rewind; using ::scanf;
  25. using ::setbuf; using ::setvbuf; using ::sprintf;
  26. using ::sscanf; using ::tmpfile; using ::tmpnam;
  27. using ::ungetc; using ::vfprintf; using ::vprintf;
  28. using ::vsprintf;
  29. _STD_END
  30. #endif /* _STD_USING */
  31. #endif /* _CSTDIO_ */
  32. /*
  33. * Copyright (c) 1992-2001 by P.J. Plauger. ALL RIGHTS RESERVED.
  34. * Consult your license regarding permissions and restrictions.
  35. V3.10:0009 */