binary B+ tree - first attempt, compiles and runs
[svn/Cll1h/.git] / tools / cake.c
CommitLineData
7f13bdad 1#include "cll1.h"
2
3program
4{
9b936bfc 5 int state = 0;
6 string filename = NULL,line = NULL;
7 file f = NULL;
8
9
10 try
7f13bdad 11 {
9b936bfc 12 f = file_write("_cake.c");
13 for_directory_filenames(filename,"./")
14 {
15 for_file_lines(line,filename)
16 {
17 for_chars(znak,line)
18 {
19 switch(znak)
20 {
21 case '<': state
22 case '>':
23 case '?':
24 case 'C':
25 case '%':
26 case '{':
27 case '}':
28 default:
29 }
30 }
31 }
32 }
33 }
7f13bdad 34
9b936bfc 35 if_exception_switch
36 {
37 case ERROR_FILE:
38
7f13bdad 39 }
7f13bdad 40}
This page took 0.159255 seconds and 4 git commands to generate.