aboutsummaryrefslogtreecommitdiffstats
path: root/cryptography/c/stdio.py
diff options
context:
space:
mode:
Diffstat (limited to 'cryptography/c/stdio.py')
-rw-r--r--cryptography/c/stdio.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/cryptography/c/stdio.py b/cryptography/c/stdio.py
new file mode 100644
index 00000000..553b6fc9
--- /dev/null
+++ b/cryptography/c/stdio.py
@@ -0,0 +1,12 @@
+INCLUDES = [
+ '#include <stdio.h>',
+]
+
+TYPES = [
+]
+
+FUNCTIONS = [
+ 'FILE *fdopen(int fildes, const char *mode);',
+ 'FILE *fopen(const char *restrict filename, const char *restrict mode);',
+ 'FILE *freopen(const char *restrict filename, const char *restrict mode, FILE *restrict stream);',
+]