forked from id-Software/DOOM
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathprepweb.c
53 lines (46 loc) · 1.07 KB
/
prepweb.c
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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int
main(int argc, char* argv[])
{
FILE *src;
if (argc == 2) {
src = fopen("index_sp.html", "r");
} else {
src = fopen("index.html", "r");
}
FILE *dst = fopen("linuxdoom-1.10/index.html", "w");
fseek(src, 0L, SEEK_END);
int size = ftell(src);
fseek(src, 0L, SEEK_SET);
char *src_data = malloc(size);
char line[256];
while (fgets(line, sizeof(line), src)) {
/* note that fgets don't strip the terminating \n, checking its
presence would allow to handle lines longer that sizeof(line) */
line[strlen(line)-1] = '\0';
/* get the first token */
char *p = line;
char* q = strchr(line, '\"');
char out[256];
out[0] = '\0';
strcat(out,"\"");
int index=1;
while (q != NULL) {
char found[256];
strncpy(found, p, q-p);
strncpy(&out[index], found, q-p);
strncpy(&out[index+(q-p)], "\\\"", 2);
index += (q-p + 2);
p = q+1;
q = strchr(p, '\"');
}
strcpy(&out[index], p);
out[index+strlen(p)] = '\0';
strcat(out,"\\n\"\n");
fputs(out,dst);
}
fclose(src);
fclose(dst);
}