blob: 213c3c3371e41239fb2b3f7cc21749e45e945c92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <stdio.h>
#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)
*/
|