summaryrefslogtreecommitdiff
path: root/src/stdio/SEEK_SET.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdio/SEEK_SET.h')
-rw-r--r--src/stdio/SEEK_SET.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/stdio/SEEK_SET.h b/src/stdio/SEEK_SET.h
new file mode 100644
index 00000000..d9ce4b88
--- /dev/null
+++ b/src/stdio/SEEK_SET.h
@@ -0,0 +1,12 @@
+#define SEEK_SET (3)
+
+/** seek from beginning **/
+
+/***
+is used as the ARGUMENT(whence) argument to FUNCTION(fseek) to indicate that
+seeking should begin at the start of the file and move forward.
+***/
+
+/*
+STDC(1)
+*/