Subversion Repositories Kolibri OS

Rev

Rev 4921 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4921 Rev 6099
Line 28... Line 28...
28
INDEX
28
INDEX
29
	_fseeko_r
29
	_fseeko_r
Line 30... Line 30...
30
 
30
 
31
ANSI_SYNOPSIS
31
ANSI_SYNOPSIS
32
	#include 
32
	#include 
33
	int fseek(FILE *<[fp]>, long <[offset]>, int <[whence]>)
33
	int fseek(FILE *<[fp]>, long <[offset]>, int <[whence]>);
34
	int fseeko(FILE *<[fp]>, off_t <[offset]>, int <[whence]>)
34
	int fseeko(FILE *<[fp]>, off_t <[offset]>, int <[whence]>);
35
	int _fseek_r(struct _reent *<[ptr]>, FILE *<[fp]>,
35
	int _fseek_r(struct _reent *<[ptr]>, FILE *<[fp]>,
36
	             long <[offset]>, int <[whence]>)
36
	             long <[offset]>, int <[whence]>);
37
	int _fseeko_r(struct _reent *<[ptr]>, FILE *<[fp]>,
37
	int _fseeko_r(struct _reent *<[ptr]>, FILE *<[fp]>,
Line 38... Line 38...
38
	             off_t <[offset]>, int <[whence]>)
38
	             off_t <[offset]>, int <[whence]>);
39
 
39
 
40
TRAD_SYNOPSIS
40
TRAD_SYNOPSIS
41
	#include 
41
	#include 
42
	int fseek(<[fp]>, <[offset]>, <[whence]>)
42
	int fseek(<[fp]>, <[offset]>, <[whence]>);
43
	FILE *<[fp]>;
43
	FILE *<[fp]>;
Line 44... Line 44...
44
	long <[offset]>;
44
	long <[offset]>;
45
	int <[whence]>;
45
	int <[whence]>;
46
 
46
 
47
	int fseeko(<[fp]>, <[offset]>, <[whence]>)
47
	int fseeko(<[fp]>, <[offset]>, <[whence]>);
Line 48... Line 48...
48
	FILE *<[fp]>;
48
	FILE *<[fp]>;
49
	off_t <[offset]>;
49
	off_t <[offset]>;
50
	int <[whence]>;
50
	int <[whence]>;
51
 
51
 
52
	int _fseek_r(<[ptr]>, <[fp]>, <[offset]>, <[whence]>)
52
	int _fseek_r(<[ptr]>, <[fp]>, <[offset]>, <[whence]>);
Line 53... Line 53...
53
	struct _reent *<[ptr]>;
53
	struct _reent *<[ptr]>;
54
	FILE *<[fp]>;
54
	FILE *<[fp]>;
55
	long <[offset]>;
55
	long <[offset]>;
56
	int <[whence]>;
56
	int <[whence]>;
57
 
57