1// -*- C++ -*- 2//===---------------------------- cstdio ----------------------------------===// 3// 4// The LLVM Compiler Infrastructure 5// 6// This file is dual licensed under the MIT and the University of Illinois Open 7// Source Licenses. See LICENSE.TXT for details. 8// 9//===----------------------------------------------------------------------===// 10 11#ifndef _LIBCPP_CSTDIO 12#define _LIBCPP_CSTDIO 13 14/* 15 cstdio synopsis 16 17Macros: 18 19 BUFSIZ 20 EOF 21 FILENAME_MAX 22 FOPEN_MAX 23 L_tmpnam 24 NULL 25 SEEK_CUR 26 SEEK_END 27 SEEK_SET 28 TMP_MAX 29 _IOFBF 30 _IOLBF 31 _IONBF 32 stderr 33 stdin 34 stdout 35 36namespace std 37{ 38 39Types: 40 41FILE 42fpos_t 43size_t 44 45int remove(const char* filename); 46int rename(const char* old, const char* new); 47FILE* tmpfile(void); 48char* tmpnam(char* s); 49int fclose(FILE* stream); 50int fflush(FILE* stream); 51FILE* fopen(const char* restrict filename, const char* restrict mode); 52FILE* freopen(const char* restrict filename, const char * restrict mode, 53 FILE * restrict stream); 54void setbuf(FILE* restrict stream, char* restrict buf); 55int setvbuf(FILE* restrict stream, char* restrict buf, int mode, size_t size); 56int fprintf(FILE* restrict stream, const char* restrict format, ...); 57int fscanf(FILE* restrict stream, const char * restrict format, ...); 58int printf(const char* restrict format, ...); 59int scanf(const char* restrict format, ...); 60int snprintf(char* restrict s, size_t n, const char* restrict format, ...); // C99 61int sprintf(char* restrict s, const char* restrict format, ...); 62int sscanf(const char* restrict s, const char* restrict format, ...); 63int vfprintf(FILE* restrict stream, const char* restrict format, va_list arg); 64int vfscanf(FILE* restrict stream, const char* restrict format, va_list arg); // C99 65int vprintf(const char* restrict format, va_list arg); 66int vscanf(const char* restrict format, va_list arg); // C99 67int vsnprintf(char* restrict s, size_t n, const char* restrict format, // C99 68 va_list arg); 69int vsprintf(char* restrict s, const char* restrict format, va_list arg); 70int vsscanf(const char* restrict s, const char* restrict format, va_list arg); // C99 71int fgetc(FILE* stream); 72char* fgets(char* restrict s, int n, FILE* restrict stream); 73int fputc(int c, FILE* stream); 74int fputs(const char* restrict s, FILE* restrict stream); 75int getc(FILE* stream); 76int getchar(void); 77char* gets(char* s); // removed in C++14 78int putc(int c, FILE* stream); 79int putchar(int c); 80int puts(const char* s); 81int ungetc(int c, FILE* stream); 82size_t fread(void* restrict ptr, size_t size, size_t nmemb, 83 FILE* restrict stream); 84size_t fwrite(const void* restrict ptr, size_t size, size_t nmemb, 85 FILE* restrict stream); 86int fgetpos(FILE* restrict stream, fpos_t* restrict pos); 87int fseek(FILE* stream, long offset, int whence); 88int fsetpos(FILE*stream, const fpos_t* pos); 89long ftell(FILE* stream); 90void rewind(FILE* stream); 91void clearerr(FILE* stream); 92int feof(FILE* stream); 93int ferror(FILE* stream); 94void perror(const char* s); 95 96} // std 97*/ 98 99#include <__config> 100#include <stdio.h> 101 102#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) 103#pragma GCC system_header 104#endif 105 106// snprintf 107#if defined(_LIBCPP_MSVCRT) 108#include "support/win32/support.h" 109#endif 110 111#ifdef getc 112inline _LIBCPP_INLINE_VISIBILITY int __libcpp_getc(FILE* __stream) {return getc(__stream);} 113#undef getc 114inline _LIBCPP_INLINE_VISIBILITY int getc(FILE* __stream) {return __libcpp_getc(__stream);} 115#endif // getc 116 117#ifdef putc 118inline _LIBCPP_INLINE_VISIBILITY int __libcpp_putc(int __c, FILE* __stream) {return putc(__c, __stream);} 119#undef putc 120inline _LIBCPP_INLINE_VISIBILITY int putc(int __c, FILE* __stream) {return __libcpp_putc(__c, __stream);} 121#endif // putc 122 123#ifdef clearerr 124inline _LIBCPP_INLINE_VISIBILITY void __libcpp_clearerr(FILE* __stream) { return clearerr(__stream); } 125#undef clearerr 126inline _LIBCPP_INLINE_VISIBILITY void clearerr(FILE* __stream) { return __libcpp_clearerr(__stream); } 127#endif // clearerr 128 129#ifdef feof 130inline _LIBCPP_INLINE_VISIBILITY int __libcpp_feof(FILE* __stream) { return feof(__stream); } 131#undef feof 132inline _LIBCPP_INLINE_VISIBILITY int feof(FILE* __stream) { return __libcpp_feof(__stream); } 133#endif // feof 134 135#ifdef ferror 136inline _LIBCPP_INLINE_VISIBILITY int __libcpp_ferror(FILE* __stream) { return ferror(__stream); } 137#undef ferror 138inline _LIBCPP_INLINE_VISIBILITY int ferror(FILE* __stream) { return __libcpp_ferror(__stream); } 139#endif // ferror 140 141_LIBCPP_BEGIN_NAMESPACE_STD 142 143using ::FILE; 144using ::fpos_t; 145using ::size_t; 146 147using ::fclose; 148using ::fflush; 149using ::setbuf; 150using ::setvbuf; 151using ::fprintf; 152using ::fscanf; 153using ::snprintf; 154using ::sprintf; 155using ::sscanf; 156#ifndef _LIBCPP_MSVCRT 157using ::vfprintf; 158using ::vfscanf; 159using ::vsscanf; 160#endif // _LIBCPP_MSVCRT 161using ::vsnprintf; 162using ::vsprintf; 163using ::fgetc; 164using ::fgets; 165using ::fputc; 166using ::fputs; 167using ::getc; 168using ::putc; 169using ::ungetc; 170using ::fread; 171using ::fwrite; 172using ::fgetpos; 173using ::fseek; 174using ::fsetpos; 175using ::ftell; 176using ::rewind; 177using ::clearerr; 178using ::feof; 179using ::ferror; 180using ::perror; 181 182#ifndef _LIBCPP_HAS_NO_GLOBAL_FILESYSTEM_NAMESPACE 183using ::fopen; 184using ::freopen; 185using ::remove; 186using ::rename; 187using ::tmpfile; 188using ::tmpnam; 189#endif 190 191#ifndef _LIBCPP_HAS_NO_STDIN 192using ::getchar; 193#if _LIBCPP_STD_VER <= 11 194using ::gets; 195#endif 196using ::scanf; 197using ::vscanf; 198#endif 199 200#ifndef _LIBCPP_HAS_NO_STDOUT 201using ::printf; 202using ::putchar; 203using ::puts; 204using ::vprintf; 205#endif 206 207_LIBCPP_END_NAMESPACE_STD 208 209#endif // _LIBCPP_CSTDIO 210