diff options
Diffstat (limited to 'src/stdio/SEEK_CUR.h')
-rw-r--r-- | src/stdio/SEEK_CUR.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/stdio/SEEK_CUR.h b/src/stdio/SEEK_CUR.h new file mode 100644 index 00000000..efa117f8 --- /dev/null +++ b/src/stdio/SEEK_CUR.h @@ -0,0 +1,12 @@ +#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) +*/ |