diff options
Diffstat (limited to 'src/stdio/SEEK_CUR.c')
-rw-r--r-- | src/stdio/SEEK_CUR.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/stdio/SEEK_CUR.c b/src/stdio/SEEK_CUR.c new file mode 100644 index 00000000..558d57ef --- /dev/null +++ b/src/stdio/SEEK_CUR.c @@ -0,0 +1,12 @@ +#include <stdio.h> +#define SEEK_CUR (1) + +/** seek forward **/ + +/*** +is used as the ARGUMENT(whence) argument to FUNCTION(fseek) to indicate that +seeking should begin at the current file position and move forward. +***/ +/* +STDC(1) +*/ |