blob: f56aef4814218c136b21dda98770410aea0dcdb0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#if 0
#include <stdio.h>
/** set the file position indicator **/
int fsetpos(FILE *stream, const fpos_t *pos)
{
(void)stream; (void)pos;
/* TODO */
return 1;
}
/***
sets the file position indicator of ARGUMENT(stream) to
ARGUMENT(pos), which must have been previously obtained by a call to
FUNCTION(fgetpos).
A successful call to THIS() clears the end-of-file indicator and discards
any characters pushed back with FUNCTION(ungetc).
***/
/*
STDC(1)
*/
#endif
|