about summary refs log tree commit diff
path: root/stdio/stdio_ext.h
diff options
context:
space:
mode:
authorPatryk Niedźwiedziński <pniedzwiedzinski19@gmail.com>2021-04-17 10:28:11 +0200
committerPatryk Niedźwiedziński <pniedzwiedzinski19@gmail.com>2021-04-17 10:28:11 +0200
commitb1ddaa81f28b8bbc62d6d50526e0935b173099eb (patch)
treee606c194f8eecdedf3f710ed097cadfe97d60122 /stdio/stdio_ext.h
downloadcat-cosmopolitan-b1ddaa81f28b8bbc62d6d50526e0935b173099eb.tar.gz
cat-cosmopolitan-b1ddaa81f28b8bbc62d6d50526e0935b173099eb.zip
Diffstat (limited to 'stdio/stdio_ext.h')
-rw-r--r--stdio/stdio_ext.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/stdio/stdio_ext.h b/stdio/stdio_ext.h
new file mode 100644
index 0000000..ea8b671
--- /dev/null
+++ b/stdio/stdio_ext.h
@@ -0,0 +1,25 @@
+#ifndef COSMOPOLITAN_LIBC_STDIO_STDIO_EXT_H_
+#define COSMOPOLITAN_LIBC_STDIO_STDIO_EXT_H_
+#include "libc/stdio/stdio.h"
+
+#define FSETLOCKING_QUERY    0
+#define FSETLOCKING_INTERNAL 1
+#define FSETLOCKING_BYCALLER 2
+
+#if !(__ASSEMBLER__ + __LINKER__ + 0)
+COSMOPOLITAN_C_START_
+
+size_t __fbufsize(FILE *);
+size_t __fpending(FILE *);
+int __flbf(FILE *);
+int __freadable(FILE *);
+int __fwritable(FILE *);
+int __freading(FILE *);
+int __fwriting(FILE *);
+int __fsetlocking(FILE *, int);
+void _flushlbf(void);
+void __fpurge(FILE *);
+
+COSMOPOLITAN_C_END_
+#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
+#endif /* COSMOPOLITAN_LIBC_STDIO_STDIO_EXT_H_ */