2 # if defined __need_FILE || defined __need___FILE
3 # include <libio/stdio.h>
5 # include <libio/stdio.h>
7 /* Now define the internal interfaces. */
8 extern int __fcloseall (void);
9 extern int __snprintf (char *__restrict __s
, size_t __maxlen
,
10 __const
char *__restrict __format
, ...)
11 __attribute__ ((__format__ (__printf__
, 3, 4)));
12 extern int __vsnprintf (char *__restrict __s
, size_t __maxlen
,
13 __const
char *__restrict __format
, _G_va_list __arg
)
14 __attribute__ ((__format__ (__printf__
, 3, 0)));
15 extern int __vfscanf (FILE *__restrict __s
,
16 __const
char *__restrict __format
,
18 __attribute__ ((__format__ (__scanf__
, 2, 0)));
19 libc_hidden_proto (__vfscanf
)
20 extern int __vscanf (__const
char *__restrict __format
,
22 __attribute__ ((__format__ (__scanf__
, 1, 0)));
23 extern _IO_ssize_t
__getline (char **__lineptr
, size_t *__n
,
25 extern int __vsscanf (__const
char *__restrict __s
,
26 __const
char *__restrict __format
,
28 __attribute__ ((__format__ (__scanf__
, 2, 0)));
30 extern int __sprintf_chk (char *, int, size_t, const char *, ...) __THROW
;
31 extern int __snprintf_chk (char *, size_t, int, size_t, const char *, ...)
33 extern int __vsprintf_chk (char *, int, size_t, const char *,
35 extern int __vsnprintf_chk (char *, size_t, int, size_t, const char *,
37 extern int __printf_chk (int, const char *, ...);
38 extern int __fprintf_chk (FILE *, int, const char *, ...);
39 extern int __vprintf_chk (int, const char *, _G_va_list
);
40 extern int __vfprintf_chk (FILE *, int, const char *, _G_va_list
);
42 /* Prototypes for compatibility functions. */
43 extern FILE *__new_tmpfile (void);
44 extern FILE *__old_tmpfile (void);
48 # define __need_size_t
50 /* Generate a unique file name (and possibly open it). */
51 extern int __path_search (char *__tmpl
, size_t __tmpl_len
,
52 __const
char *__dir
, __const
char *__pfx
,
55 extern int __gen_tempname (char *__tmpl
, int __kind
);
56 /* The __kind argument to __gen_tempname may be one of: */
57 # define __GT_FILE 0 /* create a file */
58 # define __GT_BIGFILE 1 /* create a file, using open64 */
59 # define __GT_DIR 2 /* create a directory */
60 # define __GT_NOCREATE 3 /* just find a name not currently in use */
62 /* Print out MESSAGE on the error output and abort. */
63 extern void __libc_fatal (__const
char *__message
)
64 __attribute__ ((__noreturn__
));
66 /* Acquire ownership of STREAM. */
67 extern void __flockfile (FILE *__stream
);
69 /* Relinquish the ownership granted for STREAM. */
70 extern void __funlockfile (FILE *__stream
);
72 /* Try to acquire ownership of STREAM but do not block if it is not
74 extern int __ftrylockfile (FILE *__stream
);
76 extern int __getc_unlocked (FILE *__fp
);
77 extern wint_t __getwc_unlocked (FILE *__fp
);
80 extern __const
char *__const _sys_errlist_internal
[] attribute_hidden
;
81 extern int _sys_nerr_internal attribute_hidden
;
83 extern int __asprintf_internal (char **__restrict __ptr
,
84 __const
char *__restrict __fmt
, ...)
85 attribute_hidden
__attribute__ ((__format__ (__printf__
, 2, 3)));
86 # if !defined NOT_IN_libc && !defined _ISOMAC
87 # define __asprintf(ptr, fmt, args...) \
88 INTUSE(__asprintf) (ptr, fmt, ##args)
90 extern _IO_FILE
*_IO_new_fopen (const char*, const char*);
91 # define fopen(fname, mode) _IO_new_fopen (fname, mode)
92 extern _IO_FILE
*_IO_new_fdopen (int, const char*);
93 # define fdopen(fd, mode) _IO_new_fdopen (fd, mode)
94 extern int _IO_new_fclose (_IO_FILE
*);
95 # define fclose(fp) _IO_new_fclose (fp)
96 extern int _IO_fputs (const char*, _IO_FILE
*);
97 libc_hidden_proto (_IO_fputs
)
98 # define fputs(str, fp) _IO_fputs (str, fp)
99 extern int _IO_new_fsetpos (_IO_FILE
*, const _IO_fpos_t
*);
100 # define fsetpos(fp, posp) _IO_new_fsetpos (fp, posp)
101 extern int _IO_new_fgetpos (_IO_FILE
*, _IO_fpos_t
*);
102 # define fgetpos(fp, posp) _IO_new_fgetpos (fp, posp)
105 libc_hidden_proto (dprintf
)
106 libc_hidden_proto (fprintf
)
107 libc_hidden_proto (vfprintf
)
108 libc_hidden_proto (sprintf
)
109 libc_hidden_proto (sscanf
)
110 libc_hidden_proto (fwrite
)
111 libc_hidden_proto (perror
)
112 libc_hidden_proto (remove
)
113 libc_hidden_proto (rewind
)
114 libc_hidden_proto (fileno
)
115 libc_hidden_proto (fwrite
)
116 libc_hidden_proto (fseek
)
117 libc_hidden_proto (fflush_unlocked
)
118 libc_hidden_proto (fread_unlocked
)
119 libc_hidden_proto (fwrite_unlocked
)
120 libc_hidden_proto (fgets_unlocked
)
121 libc_hidden_proto (fputs_unlocked
)
122 libc_hidden_proto (open_memstream
)
123 libc_hidden_proto (__libc_fatal
)
124 libc_hidden_proto (__vsprintf_chk
)
125 libc_hidden_proto (__vsnprintf_chk
)
127 # if !defined NOT_IN_libc && defined SHARED && defined DO_VERSIONING \
128 && defined HAVE_VISIBILITY_ATTRIBUTE && !defined HAVE_BROKEN_ALIAS_ATTRIBUTE\
129 && !defined NO_HIDDEN
130 /* Special gcc builtins. */
131 extern size_t __builtin_fwrite (const void *, size_t, size_t, void *)
132 __asm ("__GI_fwrite");
133 extern size_t __builtin_fwrite_unlocked (const void *, size_t, size_t, void *)
134 __asm ("__GI_fwrite_unlocked");