summaryrefslogtreecommitdiff
path: root/src/stdio/SEEK_CUR.c
blob: 558d57ef830549e2a4c9e253f42aac32a2391e6f (plain)
1
2
3
4
5
6
7
8
9
10
11
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)
*/