blob: 42db3db6edae236d27f9638bcced22db8ca2d6dc (
plain) (
blame)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
#include "wccfile.h"
#define EOFX -1
size_x susan_wccfread(void* ptr, size_x size, size_x count, struct wccFILE* stream)
{
if ( susan_wccfeof( stream ) ) {
return EOFX;
}
unsigned i = stream->cur_pos, i2 = 0;
size_x number_of_chars_to_read =
stream->size - stream->cur_pos >= size * count ?
size * count : stream->size - stream->cur_pos;
_Pragma( "loopbound min 7220 max 7220" )
while (i < stream->cur_pos + number_of_chars_to_read) {
((unsigned char*)ptr)[i2++] = stream->data[i++];
}
stream->cur_pos += number_of_chars_to_read;
return number_of_chars_to_read;
}
int susan_wccfgetc(struct wccFILE *stream)
{
if ( susan_wccfeof( stream ) ) {
return EOFX;
} else {
return stream->data[stream->cur_pos++];
}
}
char *susan_wccfgets(char *str, int num, struct wccFILE *stream )
{
if ( !stream || susan_wccfeof( stream ) || !str || num <= 0 ) {
return 0;
}
int pos = 0;
_Pragma( "loopbound min 58 max 58" )
while ( pos < num - 1 && !susan_wccfeof( stream ) ) {
str[pos] = stream->data[stream->cur_pos];
if ( str[pos] == '\n' ) {
break;
}
stream->cur_pos++;
pos++;
}
str[pos++] = '\0';
return str;
}
int susan_wccfseek(struct wccFILE* stream, long int offset, enum _Origin_ origin)
{
if (origin == WCCSEEK_SET) {
stream->cur_pos = offset;
return 0;
} else if (origin == WCCSEEK_CUR) {
stream->cur_pos += offset;
return 0;
} else if (origin == WCCSEEK_END) {
stream->cur_pos = stream->size + offset;
return 0;
}
return -1;
}
int susan_wccfgetpos(struct wccFILE* stream, unsigned* position)
{
*position = stream->cur_pos;
return 0;
}
int susan_wccfeof(struct wccFILE* stream)
{
return stream->cur_pos == stream->size ? 1 : 0;
}
|