* sysdeps/m68k/bits/byteswap.h (__bswap_32): Add cast to avoid
[glibc/pb-stable.git] / conform / data / stdio.h-data
blobe00ebee68b627b2ff494cae6895c83aaab3ade4c
1 constant BUFSIZ
2 constant FILENAME_MAX
3 constant FOPEN_MAX >= 8
5 constant _IOFBF
6 constant _IOLBF
7 constant _IONBF
9 constant L_ctermid
10 constant L_cuserid
11 constant L_tmpnam
13 constant SEEK_CUR
14 constant SEEK_END
15 constant SEEK_SET
17 constant TMP_MAX >= 10000
19 constant EOF
21 constant NULL
23 constant P_tmpdir
25 macro stdin
26 macro stdout
27 macro stderr
29 type FILE
30 type fpos_t
31 type va_list
32 type size_t
34 function void clearerr (FILE*)
35 function {char*} ctermid (char*)
36 function {char*} cuserid (char*)
37 function int fclose (FILE*)
38 function {FILE*} fdopen (int, const char*)
39 function int feof (FILE*)
40 function int ferror (FILE*)
41 function int fflush (FILE*)
42 function int fgetc (FILE*)
43 function int fgetpos (FILE*, fpos_t*)
44 function {char*} fgets (char*, int, FILE*)
45 function int fileno (FILE*)
46 function void flockfile (FILE*)
47 function {FILE*} fopen (const char*, const char*)
48 function int fprintf (FILE*, const char*, ...)
49 function int fputc (int, FILE*)
50 function int fputs (const char*, FILE*)
51 function size_t fread (void*, size_t, size_t, FILE*)
52 function {FILE*} freopen (const char*, const char*, FILE*)
53 function int fscanf (FILE*, const char*, ...)
54 function int fseek (FILE*, long int, int)
55 function int fseeko (FILE*, off_t, int)
56 function int fsetpos (FILE*, const fpos_t*)
57 function {long int} ftell (FILE*)
58 function off_t ftello (FILE*)
59 function int ftrylockfile (FILE*)
60 function void funlockfile (FILE*)
61 function size_t fwrite (const void*, size_t, size_t, FILE*)
62 function int getc (FILE*)
63 function int getchar (void)
64 function int getc_unlocked (FILE*)
65 function int getopt (int, char *const[], const char *)
66 function {char*} gets (char*)
67 function int getw (FILE*)
68 function int pclose (FILE*)
69 function void perror (const char*)
70 function {FILE*} popen (const char*, const char*)
71 function int printf (const char*, ...)
72 function int putc (int, FILE*)
73 function int putchar (int)
74 function int putc_unlocked (int, FILE*)
75 function int putchar_unlocked (int)
76 function int puts (const char*)
77 function int putw (int, FILE*)
78 function int remove (const char*)
79 function int rename (const char*, const char*)
80 function void rewind (FILE*)
81 function int scanf (const char*, ...)
82 function void setbuf (FILE*, char*)
83 function int setvbuf (FILE*, char*, int, size_t)
84 function int snprintf (char*, size_t, const char*, ...)
85 function int sprintf (char *, const char *, ...)
86 function int sscanf (const char*, const char*, ...)
87 function {char*} tempnam (const char*, const char*)
88 function {FILE*} tmpfile (void)
89 function {char*} tmpnam (char*)
90 function int ungetc (int, FILE*)
91 function int vfprintf (FILE*, const char*, va_list)
92 function int vprintf (const char*, va_list)
93 function int vsnprintf (char*, size_t, const char*, va_list)
94 function int vsprintf (char*, const char*, va_list)
96 #if !defined ISO && !defined POSIX
97 variable {char*} optarg
98 variable int opterr
99 variable int optind
100 variable int optopt
102 allow-header stddef.h
104 allow *_t
105 #endif