-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfile.c
More file actions
117 lines (106 loc) · 2.18 KB
/
file.c
File metadata and controls
117 lines (106 loc) · 2.18 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/* IFJ20 - Dynamic char array
* Authors:
* Mario Harvan, xharva03
*/
#include "file.h"
#include <stdlib.h>
#include <stdio.h>
#include "error.h"
void resizeIfNeeded(dynamicArr *arr)
{
if (arr != NULL)
{
if (arr->arr != NULL)
if (arr->length == arr->size)
{
arr->arr = realloc(arr->arr, sizeof(char) * arr->size * 2);
if (arr->arr == NULL)
throw_error_fatal(INTERNAL_ERROR, "%s", "Memory allocation error");
arr->size *= 2;
}
}
}
dynamicArr *arrInit()
{
dynamicArr *tmp = malloc(sizeof(dynamicArr));
if (tmp == NULL)
throw_error_fatal(INTERNAL_ERROR, "%s", "Memory allocation error");
tmp->arr = malloc(sizeof(char) * DEFAULT_ARR_SIZE);
if (tmp->arr == NULL)
throw_error_fatal(INTERNAL_ERROR, "%s", "Memory allocation error");
tmp->size = DEFAULT_ARR_SIZE;
tmp->length = 0;
tmp->position = 0;
return tmp;
}
void arrPutc(dynamicArr *arr, char c)
{
if (arr != NULL)
{
if (arr->arr != NULL)
{
resizeIfNeeded(arr);
arr->arr[arr->length++] = c;
}
}
}
int arrGetc(dynamicArr *arr)
{
if (arr != NULL)
{
if (arr->arr != NULL)
{
if (arr->position < arr->length)
{
return arr->arr[arr->position++];
}
else
{
arr->position++;
return EOF;
}
}
}
return ARR_ERROR;
}
void arrUnGetc(dynamicArr *arr)
{
if (arr != NULL)
{
if (arr->arr != NULL)
{
if (arr->position > 0)
arr->position--;
}
}
}
void arrSeekStart(dynamicArr *arr)
{
if (arr != NULL)
{
if (arr->arr != NULL)
{
arr->position = 0;
}
}
}
void arrFree(dynamicArr *arr)
{
if (arr != NULL)
{
if (arr->arr != NULL)
{
free(arr->arr);
free(arr);
}
}
}
void copyStdinToArr(dynamicArr *arr)
{
int c = fgetc(stdin);
while (c != EOF)
{
arrPutc(arr, c);
c = fgetc(stdin);
}
}