blob: 7d177ca7eafbf14a4f9dbae495c427a878c5613d (
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
29
30
31
32
33
34
35
36
37
38
39
|
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "util.h"
typedef struct strings {
char **strs;
int count;
} strings;
int countChars(char *s, char c){ // counts the number of times c ocurrs in s
int count = 0;
for (int i = 0; i < strlen(s); i++){
if (s[i] == c) count++;
}
return count;
}
strings *parse(FILE *f){
strings *strs = malloc(sizeof(strings));
strs->strs = malloc(sizeof(char **));
char *line = alloca(256);
int count = 0;
while (fgets(line, 256, f) != NULL){
if (line[0] != '\n'){
while (line[0] == '\t') line++;
line[strlen(line)-1] = '\0';
strs->strs[count] = malloc(256);
memcpy(strs->strs[count], line, 256);
count++;
}
}
strs->count = count;
return strs;
}
|