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