]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - contrib/libc++/include/cstdio
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / contrib / libc++ / include / cstdio
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
17 Macros:
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
36 namespace std
37 {
38
39 Types:
40
41 FILE
42 fpos_t
43 size_t
44
45 int remove(const char* filename);
46 int rename(const char* old, const char* new);
47 FILE* tmpfile(void);
48 char* tmpnam(char* s);
49 int fclose(FILE* stream);
50 int fflush(FILE* stream);
51 FILE* fopen(const char* restrict filename, const char* restrict mode);
52 FILE* freopen(const char* restrict filename, const char * restrict mode,
53               FILE * restrict stream);
54 void setbuf(FILE* restrict stream, char* restrict buf);
55 int setvbuf(FILE* restrict stream, char* restrict buf, int mode, size_t size);
56 int fprintf(FILE* restrict stream, const char* restrict format, ...);
57 int fscanf(FILE* restrict stream, const char * restrict format, ...);
58 int printf(const char* restrict format, ...);
59 int scanf(const char* restrict format, ...);
60 int snprintf(char* restrict s, size_t n, const char* restrict format, ...);    // C99
61 int sprintf(char* restrict s, const char* restrict format, ...);
62 int sscanf(const char* restrict s, const char* restrict format, ...);
63 int vfprintf(FILE* restrict stream, const char* restrict format, va_list arg);
64 int vfscanf(FILE* restrict stream, const char* restrict format, va_list arg);  // C99
65 int vprintf(const char* restrict format, va_list arg);
66 int vscanf(const char* restrict format, va_list arg);                          // C99
67 int vsnprintf(char* restrict s, size_t n, const char* restrict format,         // C99
68               va_list arg);
69 int vsprintf(char* restrict s, const char* restrict format, va_list arg);
70 int vsscanf(const char* restrict s, const char* restrict format, va_list arg); // C99
71 int fgetc(FILE* stream);
72 char* fgets(char* restrict s, int n, FILE* restrict stream);
73 int fputc(int c, FILE* stream);
74 int fputs(const char* restrict s, FILE* restrict stream);
75 int getc(FILE* stream);
76 int getchar(void);
77 char* gets(char* s);
78 int putc(int c, FILE* stream);
79 int putchar(int c);
80 int puts(const char* s);
81 int ungetc(int c, FILE* stream);
82 size_t fread(void* restrict ptr, size_t size, size_t nmemb,
83              FILE* restrict stream);
84 size_t fwrite(const void* restrict ptr, size_t size, size_t nmemb,
85               FILE* restrict stream);
86 int fgetpos(FILE* restrict stream, fpos_t* restrict pos);
87 int fseek(FILE* stream, long offset, int whence);
88 int fsetpos(FILE*stream, const fpos_t* pos);
89 long ftell(FILE* stream);
90 void rewind(FILE* stream);
91 void clearerr(FILE* stream);
92 int feof(FILE* stream);
93 int ferror(FILE* stream);
94 void 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 #ifdef getc
107 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_getc(FILE* __stream) {return getc(__stream);}
108 #undef getc
109 inline _LIBCPP_INLINE_VISIBILITY int getc(FILE* __stream) {return __libcpp_getc(__stream);}
110 #endif  // getc
111
112 #ifdef putc
113 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_putc(int __c, FILE* __stream) {return putc(__c, __stream);}
114 #undef putc
115 inline _LIBCPP_INLINE_VISIBILITY int putc(int __c, FILE* __stream) {return __libcpp_putc(__c, __stream);}
116 #endif  // putc
117
118 _LIBCPP_BEGIN_NAMESPACE_STD
119
120 using ::FILE;
121 using ::fpos_t;
122 using ::size_t;
123
124 using ::remove;
125 using ::rename;
126 using ::tmpfile;
127 using ::tmpnam;
128 using ::fclose;
129 using ::fflush;
130 using ::fopen;
131 using ::freopen;
132 using ::setbuf;
133 using ::setvbuf;
134 using ::fprintf;
135 using ::fscanf;
136 using ::printf;
137 using ::scanf;
138 using ::snprintf;
139 using ::sprintf;
140 using ::sscanf;
141 #ifndef _MSC_VER
142 using ::vfprintf;
143 using ::vfscanf;
144 using ::vscanf;
145 using ::vsscanf;
146 #endif // _MSC_VER
147 using ::vprintf;
148 using ::vsnprintf;
149 using ::vsprintf;
150 using ::fgetc;
151 using ::fgets;
152 using ::fputc;
153 using ::fputs;
154 using ::getc;
155 using ::getchar;
156 using ::gets;
157 using ::putc;
158 using ::putchar;
159 using ::puts;
160 using ::ungetc;
161 using ::fread;
162 using ::fwrite;
163 using ::fgetpos;
164 using ::fseek;
165 using ::fsetpos;
166 using ::ftell;
167 using ::rewind;
168 using ::clearerr;
169 using ::feof;
170 using ::ferror;
171 using ::perror;
172
173 _LIBCPP_END_NAMESPACE_STD
174
175 #endif  // _LIBCPP_CSTDIO