blob: 15a564397bc0e122971d820a030f86395d95c1c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#define SEEK_END (2)
/** seek from end **/
/***
is used as the ARGUMENT(whence) argument to FUNCTION(fseek) to indicate that
seeking should begin at the end of the file and move backward.
***/
/*
STDC(1)
*/
|