update copyright/credits for recent code additions
[musl] / include / stdio_ext.h
1 #ifndef _STDIO_EXT_H
2 #define _STDIO_EXT_H
3
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7
8 #define FSETLOCKING_QUERY 0
9 #define FSETLOCKING_INTERNAL 1
10 #define FSETLOCKING_BYCALLER 2
11
12 void _flushlbf(void);
13 int __fsetlocking(FILE *, int);
14 int __fwriting(FILE *);
15 int __freading(FILE *);
16 int __freadable(FILE *);
17 int __fwritable(FILE *);
18 int __flbf(FILE *);
19 size_t __fbufsize(FILE *);
20 size_t __fpending(FILE *);
21 int __fpurge(FILE *);
22
23 size_t __freadahead(FILE *);
24 const char *__freadptr(FILE *, size_t *);
25 void __freadptrinc(FILE *, size_t);
26 void __fseterr(FILE *);
27
28 #ifdef __cplusplus
29 }
30 #endif
31
32 #endif