summaryrefslogtreecommitdiffstats
path: root/inf/rtk/offline/razdeli.c
blob: 24c36c16954e61678493a598a8267d56af927a1a (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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <offline.h>
int main (int argc, char ** argv) {
	char ** n = malloc(sizeof(char *) * 1);
	size_t * v = malloc(sizeof(size_t) * 1);
	size_t nalog = 0;
	int returnstatus = 0;
	char c = getchar();
	int vrs = 0;
	size_t pjev;
	char fn[69];
	FILE * fd;
	/* struct rtk_kos * p; */
	n[0] = NULL;
	v[0] = 0;
	while (!feof(stdin)) {
		n[nalog] = realloc(n[nalog], sizeof(char)*v[nalog]+2);
		n[nalog][v[nalog]++] = c;
		n[nalog][v[nalog]] = '\0';
		if (c == RTK_EOL) {
			if (vrs == 0 && strncmp("Stiskanje", n[0], strlen("Stiskanje") != 0)) {
				fprintf(stderr, "vhodna datoteka se ne začne s \"Stiskanje\"\n");
				returnstatus = 1;
				goto returncleanly;
			}
			if ((vrs - 2) % 3 == 2) { /* če je bila to naloga */
				n[nalog][--v[nalog]] = '\0';
				fprintf(stderr, "prepisal nalogo %lu\r", nalog);
				nalog++;
				n = realloc(n, sizeof(char*)*(nalog+1));
				n[nalog] = NULL;
				v = realloc(v, sizeof(size_t)*(nalog+1));
			}
			v[nalog] = 0; /* gremo na začetek prostora za nalogo */
			vrs++;
		}
		c = getchar();
	}
	fprintf(stderr, "zapisal naloge v spomin.         \n");
	for (vrs = 0; vrs < nalog; vrs++) {
		fprintf(stderr, "shranjujem nalogo %d\n", vrs);
		snprintf(fn, 69, "naloga%d.txt", vrs+1);
		fd = fopen(fn, "w");
		pjev = 0;
		while (n[vrs][pjev] != '\0')
			putc(n[vrs][pjev++], fd);
		fprintf(stderr, "zadnji znak je %02x\n", n[vrs][--pjev]);
		fclose(fd);
		/* pjev = rtk_resi(n[vrs], p);
		free(p); */
	}
	returncleanly:
	while (nalog > 0) {
		nalog--;
		free(n[nalog]);
		n[nalog] = NULL;
	}
	free(n);
	n = NULL;
	free(v);
	v = NULL;
	return returnstatus;
}