]> git.ipfire.org Git - thirdparty/glibc.git/blame - include/stdio.h
Add more tests for memchr
[thirdparty/glibc.git] / include / stdio.h
CommitLineData
6796bc80 1#ifndef _STDIO_H
7c3018f9 2# if defined _ISOMAC || defined __need_FILE || defined __need___FILE
848438d4 3# include <libio/stdio.h>
ab58d620 4# else
848438d4 5# include <libio/stdio.h>
bdbf022d
UD
6
7/* Now define the internal interfaces. */
b15549e6 8
aaa8d85c
UD
9extern int __fcloseall (void);
10extern int __snprintf (char *__restrict __s, size_t __maxlen,
a784e502 11 const char *__restrict __format, ...)
bdbf022d 12 __attribute__ ((__format__ (__printf__, 3, 4)));
61158ffa 13libc_hidden_proto (__snprintf)
bd7f30a9 14extern int __vsnprintf (char *__restrict __s, size_t __maxlen,
a784e502 15 const char *__restrict __format, _G_va_list __arg)
bd7f30a9 16 __attribute__ ((__format__ (__printf__, 3, 0)));
aaa8d85c 17extern int __vfscanf (FILE *__restrict __s,
a784e502 18 const char *__restrict __format,
aaa8d85c 19 _G_va_list __arg)
bdbf022d 20 __attribute__ ((__format__ (__scanf__, 2, 0)));
a20d8dbe 21libc_hidden_proto (__vfscanf)
a784e502 22extern int __vscanf (const char *__restrict __format,
aaa8d85c 23 _G_va_list __arg)
bdbf022d 24 __attribute__ ((__format__ (__scanf__, 1, 0)));
aaa8d85c
UD
25extern _IO_ssize_t __getline (char **__lineptr, size_t *__n,
26 FILE *__stream);
a784e502
UD
27extern int __vsscanf (const char *__restrict __s,
28 const char *__restrict __format,
aaa8d85c 29 _G_va_list __arg)
bfce746a 30 __attribute__ ((__format__ (__scanf__, 2, 0)));
bdbf022d 31
b5cc329c
UD
32extern int __sprintf_chk (char *, int, size_t, const char *, ...) __THROW;
33extern int __snprintf_chk (char *, size_t, int, size_t, const char *, ...)
34 __THROW;
35extern int __vsprintf_chk (char *, int, size_t, const char *,
36 _G_va_list) __THROW;
37extern int __vsnprintf_chk (char *, size_t, int, size_t, const char *,
38 _G_va_list) __THROW;
39extern int __printf_chk (int, const char *, ...);
40extern int __fprintf_chk (FILE *, int, const char *, ...);
41extern int __vprintf_chk (int, const char *, _G_va_list);
42extern int __vfprintf_chk (FILE *, int, const char *, _G_va_list);
553cc5f9
UD
43extern char *__fgets_unlocked_chk (char *buf, size_t size, int n, FILE *fp);
44extern char *__fgets_chk (char *buf, size_t size, int n, FILE *fp);
dff37515
UD
45extern int __asprintf_chk (char **, int, const char *, ...) __THROW;
46extern int __vasprintf_chk (char **, int, const char *, _G_va_list) __THROW;
47extern int __dprintf_chk (int, int, const char *, ...);
48extern int __vdprintf_chk (int, int, const char *, _G_va_list);
49extern int __obstack_printf_chk (struct obstack *, int, const char *, ...)
50 __THROW;
51extern int __obstack_vprintf_chk (struct obstack *, int, const char *,
52 _G_va_list) __THROW;
b5cc329c 53
874aa523 54extern int __isoc99_fscanf (FILE *__restrict __stream,
a784e502
UD
55 const char *__restrict __format, ...) __wur;
56extern int __isoc99_scanf (const char *__restrict __format, ...) __wur;
57extern int __isoc99_sscanf (const char *__restrict __s,
58 const char *__restrict __format, ...) __THROW;
874aa523 59extern int __isoc99_vfscanf (FILE *__restrict __s,
a784e502 60 const char *__restrict __format,
874aa523 61 _G_va_list __arg) __wur;
a784e502 62extern int __isoc99_vscanf (const char *__restrict __format,
874aa523 63 _G_va_list __arg) __wur;
a784e502
UD
64extern int __isoc99_vsscanf (const char *__restrict __s,
65 const char *__restrict __format,
874aa523
UD
66 _G_va_list __arg) __THROW;
67libc_hidden_proto (__isoc99_vsscanf)
68libc_hidden_proto (__isoc99_vfscanf)
69
ed073f0e
AJ
70/* Prototypes for compatibility functions. */
71extern FILE *__new_tmpfile (void);
72extern FILE *__old_tmpfile (void);
73
74
992af677 75
ab58d620 76# define __need_size_t
330fadfc 77# define __need_wint_t
ab58d620 78# include <stddef.h>
992af677 79/* Generate a unique file name (and possibly open it). */
aaa8d85c 80extern int __path_search (char *__tmpl, size_t __tmpl_len,
a784e502 81 const char *__dir, const char *__pfx,
aaa8d85c 82 int __try_tempdir);
992af677 83
7f3146e7
UD
84extern int __gen_tempname (char *__tmpl, int __suffixlen, int __flags,
85 int __kind);
2e65ca2b 86/* The __kind argument to __gen_tempname may be one of: */
ab58d620 87# define __GT_FILE 0 /* create a file */
d7e23b02
UD
88# define __GT_DIR 1 /* create a directory */
89# define __GT_NOCREATE 2 /* just find a name not currently in use */
992af677
UD
90
91/* Print out MESSAGE on the error output and abort. */
a784e502 92extern void __libc_fatal (const char *__message)
992af677 93 __attribute__ ((__noreturn__));
a784e502 94extern void __libc_message (int do_abort, const char *__fnt, ...);
b50f8e42
UD
95extern void __fortify_fail (const char *msg)
96 __attribute__ ((__noreturn__)) internal_function;
3a50811c 97libc_hidden_proto (__fortify_fail)
992af677 98
d4b0774f
AJ
99/* Acquire ownership of STREAM. */
100extern void __flockfile (FILE *__stream);
101
102/* Relinquish the ownership granted for STREAM. */
103extern void __funlockfile (FILE *__stream);
d1646309 104
dd040747
AJ
105/* Try to acquire ownership of STREAM but do not block if it is not
106 possible. */
107extern int __ftrylockfile (FILE *__stream);
108
03bac9ac
AJ
109extern int __getc_unlocked (FILE *__fp);
110extern wint_t __getwc_unlocked (FILE *__fp);
111
8a259a23
UD
112extern int __fxprintf (FILE *__fp, const char *__fmt, ...)
113 __attribute__ ((__format__ (__printf__, 2, 3)));
544ce845
ZW
114extern int __fxprintf_nocancel (FILE *__fp, const char *__fmt, ...)
115 __attribute__ ((__format__ (__printf__, 2, 3)));
03bac9ac 116
a784e502 117extern const char *const _sys_errlist_internal[] attribute_hidden;
1897bc3f 118extern int _sys_nerr_internal attribute_hidden;
77fe0b9c 119
d18ea0c5 120libc_hidden_proto (__asprintf)
4f41c682 121# if IS_IN (libc)
79937577 122extern _IO_FILE *_IO_new_fopen (const char*, const char*);
3ba06713 123# define fopen(fname, mode) _IO_new_fopen (fname, mode)
79937577 124extern _IO_FILE *_IO_new_fdopen (int, const char*);
3ba06713 125# define fdopen(fd, mode) _IO_new_fdopen (fd, mode)
79937577 126extern int _IO_new_fclose (_IO_FILE*);
3ba06713 127# define fclose(fp) _IO_new_fclose (fp)
79937577 128extern int _IO_fputs (const char*, _IO_FILE*);
3ba06713
UD
129libc_hidden_proto (_IO_fputs)
130# define fputs(str, fp) _IO_fputs (str, fp)
79937577 131extern int _IO_new_fsetpos (_IO_FILE *, const _IO_fpos_t *);
3ba06713 132# define fsetpos(fp, posp) _IO_new_fsetpos (fp, posp)
79937577 133extern int _IO_new_fgetpos (_IO_FILE *, _IO_fpos_t *);
3ba06713 134# define fgetpos(fp, posp) _IO_new_fgetpos (fp, posp)
6b87a564
UD
135# endif
136
b9b91868 137libc_hidden_proto (dprintf)
be7dc2b7
JM
138extern __typeof (dprintf) __dprintf
139 __attribute__ ((__format__ (__printf__, 2, 3)));
140libc_hidden_proto (__dprintf)
b9b91868
RM
141libc_hidden_proto (fprintf)
142libc_hidden_proto (vfprintf)
143libc_hidden_proto (sprintf)
144libc_hidden_proto (sscanf)
145libc_hidden_proto (fwrite)
146libc_hidden_proto (perror)
147libc_hidden_proto (remove)
148libc_hidden_proto (rewind)
3ba06713 149libc_hidden_proto (fileno)
5a6fa4d7
JM
150extern __typeof (fileno) __fileno;
151libc_hidden_proto (__fileno)
3ba06713
UD
152libc_hidden_proto (fwrite)
153libc_hidden_proto (fseek)
5a6fa4d7
JM
154extern __typeof (ftello) __ftello;
155libc_hidden_proto (__ftello)
5182cbc5 156libc_hidden_proto (fflush)
3ba06713 157libc_hidden_proto (fflush_unlocked)
eb1fae6a
JM
158extern __typeof (fflush_unlocked) __fflush_unlocked;
159libc_hidden_proto (__fflush_unlocked)
5a6fa4d7
JM
160extern __typeof (fread_unlocked) __fread_unlocked;
161libc_hidden_proto (__fread_unlocked)
3ba06713
UD
162libc_hidden_proto (fwrite_unlocked)
163libc_hidden_proto (fgets_unlocked)
c4eae752
JM
164extern __typeof (fgets_unlocked) __fgets_unlocked;
165libc_hidden_proto (__fgets_unlocked)
3ba06713 166libc_hidden_proto (fputs_unlocked)
3164bf09
JM
167extern __typeof (fputs_unlocked) __fputs_unlocked;
168libc_hidden_proto (__fputs_unlocked)
a99e59d7 169libc_hidden_proto (fmemopen)
711f67a7 170/* The prototype needs repeating instead of using __typeof to use
3ac3ff32 171 __THROW in C++ tests. */
711f67a7
JM
172extern FILE *__open_memstream (char **, size_t *) __THROW __wur;
173libc_hidden_proto (__open_memstream)
9d79e037 174libc_hidden_proto (__libc_fatal)
2193ce87 175rtld_hidden_proto (__libc_fatal)
b5cc329c
UD
176libc_hidden_proto (__vsprintf_chk)
177libc_hidden_proto (__vsnprintf_chk)
a7c684a2 178libc_hidden_proto (__vfprintf_chk)
dff37515
UD
179libc_hidden_proto (__vasprintf_chk)
180libc_hidden_proto (__vdprintf_chk)
181libc_hidden_proto (__obstack_vprintf_chk)
b15549e6 182
fdb7d390
AZ
183extern FILE * __fmemopen (void *buf, size_t len, const char *mode);
184libc_hidden_proto (__fmemopen)
185
ab58d620 186# endif
6796bc80 187#endif