Test for more unusual cases.
[open-adventure.git] / compile.c
1 #define LINESIZE 100
2 #define RTXSIZ 277
3 #define CLSMAX 12
4 #define LOCSIZ 185
5 #define LINSIZ 12500
6 #define TRNSIZ 5
7 #define TABSIZ 330
8 #define VRBSIZ 35
9 #define HNTSIZ 20
10 #define TRVSIZ 885
11
12 #include <stdio.h>
13 #include <stdlib.h>
14 #include <stdbool.h>
15 #include <unistd.h>
16
17 const char advent_to_ascii[] = {0, 32, 33, 34, 39, 40, 41, 42, 43, 44, 45, 46, 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, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 37, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 0, 1, 2, 3, 4, 5, 6, 7, 8, 0, 0, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 35, 36, 38, 47, 58, 59, 60, 61, 62, 63, 64, 91, 92, 93, 94, 95, 96, 123, 124, 125, 126, 0};
18 /* Rendered from the now-gone MPINIT() function */
19 const char ascii_to_advent[] = {0, 74, 75, 76, 77, 78, 79, 80, 81, 82, 0, 0, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 0, 1, 2, 106, 107, 63, 108, 3, 4, 5, 6, 7, 8, 9, 10, 109, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 110, 111, 112, 113, 114, 115, 116, 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, 117, 118, 119, 120, 121, 122, 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, 123, 124, 125, 126, 83};
20
21 // Global variables for use in functions below that can gradually disappear as code is cleaned up
22 long LNLENG;
23 long LNPOSN;
24 char INLINE[LINESIZE+1];
25 long NEWLOC;
26 long OLDLOC;
27
28 // Storage for what comes out of the database
29 long LINUSE;
30 long TRVS;
31 long CLSSES;
32 long TRNVLS;
33 long TABNDX;
34 long HNTMAX;
35 long PTEXT[101];
36 long RTEXT[RTXSIZ + 1];
37 long CTEXT[CLSMAX + 1];
38 long OBJSND[101];
39 long OBJTXT[101];
40 long STEXT[LOCSIZ + 1];
41 long LTEXT[LOCSIZ + 1];
42 long COND[LOCSIZ + 1];
43 long KEY[LOCSIZ + 1];
44 long LOCSND[LOCSIZ + 1];
45 long LINES[LINSIZ + 1];
46 long CVAL[CLSMAX + 1];
47 long TTEXT[TRNSIZ + 1];
48 long TRNVAL[TRNSIZ + 1];
49 long TRAVEL[TRVSIZ + 1];
50 long KTAB[TABSIZ + 1];
51 long ATAB[TABSIZ + 1];
52 long PLAC[101];
53 long FIXD[101];
54 long ACTSPK[VRBSIZ + 1];
55 long HINTS[HNTSIZ + 1][5];
56
57 bool is_set(long, long);
58 long GETTXT(long, long, long);
59 void BUG(long);
60 void MAPLIN(FILE*);
61 long GETNUM(FILE*);
62 int read_database(FILE*);
63 void read_messages(FILE*, long);
64 void read_section3_stuff(FILE*);
65 void read_vocabulary(FILE*);
66 void read_initial_locations(FILE*);
67 void read_action_verb_message_nr(FILE*);
68 void read_conditions(FILE*);
69 void read_hints(FILE*);
70 void read_sound_text(FILE*);
71 void write_0d(FILE*, FILE*, long, char*);
72 void write_1d(FILE*, FILE*, long[], long, char*);
73 void write_hints(FILE*, FILE*, long[][5], long, long, char*);
74 void write_files(FILE*, FILE*);
75
76 bool is_set(long var, long position)
77 {
78   long mask = 1l << position;
79   bool result = (var & mask) == mask;
80   return(result);
81 }
82
83 long GETTXT(long SKIP,long ONEWRD, long UPPER) {
84 /*  Take characters from an input line and pack them into 30-bit words.
85  *  Skip says to skip leading blanks.  ONEWRD says stop if we come to a
86  *  blank.  UPPER says to map all letters to uppercase.  If we reach the
87  *  end of the line, the word is filled up with blanks (which encode as 0's).
88  *  If we're already at end of line when GETTXT is called, we return -1. */
89
90   long CHAR;
91   long GETTXT;
92   static long SPLITTING = -1;
93
94   if(LNPOSN != SPLITTING)
95     SPLITTING = -1;
96   GETTXT= -1;
97   while (true) {
98     if(LNPOSN > LNLENG)
99       return(GETTXT);
100     if((!SKIP) || INLINE[LNPOSN] != 0)
101       break;
102     LNPOSN=LNPOSN+1;
103   }
104
105   GETTXT=0;
106   for (int I=1; I<=5; I++) {
107     GETTXT=GETTXT*64;
108     if(LNPOSN > LNLENG || (ONEWRD && INLINE[LNPOSN] == 0))
109       continue;
110     CHAR=INLINE[LNPOSN];
111     if(CHAR < 63) {
112       SPLITTING = -1;
113       if(UPPER && CHAR >= 37)
114         CHAR=CHAR-26;
115       GETTXT=GETTXT+CHAR;
116       LNPOSN=LNPOSN+1;
117       continue;
118     }
119     if(SPLITTING != LNPOSN) {
120       GETTXT=GETTXT+63;
121       SPLITTING = LNPOSN;
122       continue;
123     }
124
125     GETTXT=GETTXT+CHAR-63;
126     SPLITTING = -1;
127     LNPOSN=LNPOSN+1;
128   }
129
130   return(GETTXT);
131 }
132
133 void BUG(long NUM) {
134
135 /*  The following conditions are currently considered fatal bugs.  Numbers < 20
136  *  are detected while reading the database; the others occur at "run time".
137  *      0       Message line > 70 characters
138  *      1       Null line in message
139  *      2       Too many words of messages
140  *      3       Too many travel options
141  *      4       Too many vocabulary words
142  *      5       Required vocabulary word not found
143  *      6       Too many RTEXT messages
144  *      7       Too many hints
145  *      8       Location has cond bit being set twice
146  *      9       Invalid section number in database
147  *      10      Too many locations
148  *      11      Too many class or turn messages
149  *      20      Special travel (500>L>300) exceeds goto list
150  *      21      Ran off end of vocabulary table
151  *      22      Vocabulary type (N/1000) not between 0 and 3
152  *      23      Intransitive action verb exceeds goto list
153  *      24      Transitive action verb exceeds goto list
154  *      25      Conditional travel entry with no alternative
155  *      26      Location has no travel entries
156  *      27      Hint number exceeds goto list
157  *      28      Invalid month returned by date function
158  *      29      Too many parameters given to SETPRM */
159
160   fprintf(stderr, "Fatal error %ld.  See source code for interpretation.\n", NUM);
161   exit(EXIT_FAILURE);
162 }
163
164 void MAPLIN(FILE *OPENED) {
165 /*  Read a line of input, from the specified input source,
166  *  translate the chars to integers in the range 0-126 and store
167  *  them in the common array "INLINE".  Integer values are as follows:
168  *     0   = space [ASCII CODE 40 octal, 32 decimal]
169  *    1-2  = !" [ASCII 41-42 octal, 33-34 decimal]
170  *    3-10 = '()*+,-. [ASCII 47-56 octal, 39-46 decimal]
171  *   11-36 = upper-case letters
172  *   37-62 = lower-case letters
173  *    63   = percent (%) [ASCII 45 octal, 37 decimal]
174  *   64-73 = digits, 0 through 9
175  *  Remaining characters can be translated any way that is convenient;
176  *  The "TYPE" routine below is used to map them back to characters when
177  *  necessary.  The above mappings are required so that certain special
178  *  characters are known to fit in 6 bits and/or can be easily spotted.
179  *  Array elements beyond the end of the line should be filled with 0,
180  *  and LNLENG should be set to the index of the last character.
181  *
182  *  If the data file uses a character other than space (e.g., tab) to
183  *  separate numbers, that character should also translate to 0.
184  *
185  *  This procedure may use the map1,map2 arrays to maintain static data for
186  *  the mapping.  MAP2(1) is set to 0 when the program starts
187  *  and is not changed thereafter unless the routines on this page choose
188  *  to do so. */
189
190   do {
191     fgets(INLINE + 1, sizeof(INLINE) - 1, OPENED);
192   }
193   while (!feof(OPENED) && INLINE[1] == '#');
194
195   LNLENG = 0;
196   for (size_t i = 1; i <= sizeof(INLINE) && INLINE[i] != 0; ++i)
197     {
198       char val = INLINE[i] + 1;
199       INLINE[i] = ascii_to_advent[(unsigned)val];
200       if (INLINE[i] != 0)
201         LNLENG = i;
202     }
203   LNPOSN = 1;
204 }
205
206 long GETNUM(FILE *source) {
207 /*  Obtain the next integer from an input line.  If K>0, we first read a
208  *  new input line from a file; if K<0, we read a line from the keyboard;
209  *  if K=0 we use a line that has already been read (and perhaps partially
210  *  scanned).  If we're at the end of the line or encounter an illegal
211  *  character (not a digit, hyphen, or blank), we return 0. */
212
213   long DIGIT, GETNUM, SIGN;
214
215   if(source != NULL) MAPLIN(source);
216   GETNUM = 0;
217
218   while (INLINE[LNPOSN] == 0) {
219     if (LNPOSN > LNLENG) return(GETNUM);
220     ++LNPOSN;
221   }
222
223   if(INLINE[LNPOSN] != 9)
224     {
225       SIGN=1;
226     }
227   else
228     {
229       SIGN= -1;
230       LNPOSN=LNPOSN+1;
231     }
232   while (!(LNPOSN > LNLENG || INLINE[LNPOSN] == 0))
233     {
234       DIGIT=INLINE[LNPOSN]-64;
235       if(DIGIT < 0 || DIGIT > 9)
236         {
237           GETNUM=0;
238           break;
239         }
240       GETNUM=GETNUM*10+DIGIT;
241       LNPOSN=LNPOSN+1;
242     }
243
244   GETNUM=GETNUM*SIGN;
245   LNPOSN=LNPOSN+1;
246   return(GETNUM);
247 }
248
249 int read_database(FILE* database) {
250
251 /*  Clear out the various text-pointer arrays.  All text is stored in array
252  *  lines; each line is preceded by a word pointing to the next pointer (i.e.
253  *  the word following the end of the line).  The pointer is negative if this is
254  *  first line of a message.  The text-pointer arrays contain indices of
255  *  pointer-words in lines.  STEXT(N) is short description of location N.
256  *  LTEXT(N) is long description.  PTEXT(N) points to message for PROP(N)=0.
257  *  Successive prop messages are found by chasing pointers.  RTEXT contains
258  *  section 6's stuff.  CTEXT(N) points to a player-class message.  TTEXT is for
259  *  section 14.  We also clear COND (see description of section 9 for details). */
260
261   for (int I=1; I<=300; I++) {
262     if(I <= 100) PTEXT[I] = 0;
263     if(I <= RTXSIZ) RTEXT[I] = 0;
264     if(I <= CLSMAX) CTEXT[I] = 0;
265     if(I <= 100) OBJSND[I] = 0;
266     if(I <= 100) OBJTXT[I] = 0;
267     if(I > LOCSIZ) break;
268     STEXT[I] = 0;
269     LTEXT[I] = 0;
270     COND[I] = 0;
271     KEY[I] = 0;
272     LOCSND[I] = 0;
273   }
274
275   LINUSE = 1;
276   TRVS = 1;
277   CLSSES = 0;
278   TRNVLS = 0;
279
280 /*  Start new data section.  Sect is the section number. */
281
282   while(true)
283     {
284       long SECT=GETNUM(database);
285       OLDLOC= -1;
286       switch (SECT)
287         {
288           case 0: return(0);
289           case 1: read_messages(database, SECT); break;
290           case 2: read_messages(database, SECT); break;
291           case 3: read_section3_stuff(database); break;
292           case 4: read_vocabulary(database); break;
293           case 5: read_messages(database, SECT); break;
294           case 6: read_messages(database, SECT); break;
295           case 7: read_initial_locations(database); break;
296           case 8: read_action_verb_message_nr(database); break;
297           case 9: read_conditions(database); break;
298           case 10: read_messages(database, SECT); break;
299           case 11: read_hints(database); break;
300           case 12: break;
301           case 13: read_sound_text(database); break;
302           case 14: read_messages(database, SECT); break;
303           default: BUG(9);
304         }
305     }
306 }
307
308
309 /*  Sections 1, 2, 5, 6, 10, 14.  Read messages and set up pointers. */
310 void read_messages(FILE* database, long SECT)
311   {
312     long KK=LINUSE;
313     while(true)
314       {
315         long LOC;
316         LINUSE=KK;
317         LOC=GETNUM(database);
318         if(LNLENG >= LNPOSN+70)BUG(0);
319         if(LOC == -1) return;
320         if(LNLENG < LNPOSN)BUG(1);
321         do {
322             KK=KK+1;
323             if(KK >= LINSIZ)BUG(2);
324             LINES[KK]=GETTXT(false,false,false);
325           }
326         while(LINES[KK] != -1);
327         LINES[LINUSE]=KK;
328         if(LOC == OLDLOC) continue;
329         OLDLOC=LOC;
330         LINES[LINUSE]= -KK;
331         if(SECT == 14)
332           {
333             TRNVLS=TRNVLS+1;
334             if(TRNVLS > TRNSIZ)BUG(11);
335             TTEXT[TRNVLS]=LINUSE;
336             TRNVAL[TRNVLS]=LOC;
337             continue;
338           }
339         if(SECT == 10)
340           {
341             CLSSES=CLSSES+1;
342             if(CLSSES > CLSMAX)BUG(11);
343             CTEXT[CLSSES]=LINUSE;
344             CVAL[CLSSES]=LOC;
345             continue;
346           }
347         if(SECT == 6)
348           {
349             if(LOC > RTXSIZ)BUG(6);
350             RTEXT[LOC]=LINUSE;
351             continue;
352           }
353         if(SECT == 5)
354           {
355             if(LOC > 0 && LOC <= 100)PTEXT[LOC]=LINUSE;
356             continue;
357           }
358         if(LOC > LOCSIZ)BUG(10);
359         if(SECT == 1)
360           {
361             LTEXT[LOC]=LINUSE;
362             continue;
363           }
364
365         STEXT[LOC]=LINUSE;
366       }
367   }
368
369
370 /*  The stuff for section 3 is encoded here.  Each "from-location" gets a
371  *  contiguous section of the "TRAVEL" array.  Each entry in travel is
372  *  NEWLOC*1000 + KEYWORD (from section 4, motion verbs), and is negated if
373  *  this is the last entry for this location.  KEY(N) is the index in travel
374  *  of the first option at location N. */
375 void read_section3_stuff(FILE* database)
376   {
377     long LOC;
378     while((LOC=GETNUM(database)) != -1)
379       {
380         long NEWLOC=GETNUM(NULL);
381         long L;
382         if(KEY[LOC] == 0)
383           {
384             KEY[LOC]=TRVS;
385           }
386         else
387           {
388             TRAVEL[TRVS-1]= -TRAVEL[TRVS-1];
389           }
390         while((L=GETNUM(NULL)) != 0)
391           {
392             TRAVEL[TRVS]=NEWLOC*1000+L;
393             TRVS=TRVS+1;
394             if(TRVS == TRVSIZ)BUG(3);
395           }
396         TRAVEL[TRVS-1]= -TRAVEL[TRVS-1];
397       }
398   }
399
400
401 /*  Here we read in the vocabulary.  KTAB(N) is the word number, ATAB(N) is
402  *  the corresponding word.  The -1 at the end of section 4 is left in KTAB
403  *  as an end-marker. */
404 void read_vocabulary(FILE* database)
405   {
406     for (TABNDX=1; TABNDX<=TABSIZ; TABNDX++)
407       {
408         KTAB[TABNDX]=GETNUM(database);
409         if(KTAB[TABNDX] == -1) return;
410         ATAB[TABNDX]=GETTXT(true,true,true);
411       } /* end loop */
412     BUG(4);
413   }
414
415
416 /*  Read in the initial locations for each object.  Also the immovability info.
417  *  plac contains initial locations of objects.  FIXD is -1 for immovable
418  *  objects (including the snake), or = second loc for two-placed objects. */
419 void read_initial_locations(FILE* database)
420   {
421     long OBJ;
422     while((OBJ=GETNUM(database)) != -1)
423       {
424         PLAC[OBJ]=GETNUM(NULL);
425         FIXD[OBJ]=GETNUM(NULL);
426       }
427   }
428
429
430 /*  Read default message numbers for action verbs, store in ACTSPK. */
431 void read_action_verb_message_nr(FILE* database)
432   {
433     long VERB;
434     while((VERB=GETNUM(database)) != -1)
435       {
436         ACTSPK[VERB]=GETNUM(NULL);
437       }
438   }
439
440
441 /*  Read info about available liquids and other conditions, store in COND. */
442 void read_conditions(FILE* database)
443   {
444     long K;
445     while((K=GETNUM(database)) != -1)
446       {
447         long LOC;
448         while((LOC=GETNUM(NULL)) != 0)
449           {
450             if(is_set(COND[LOC],K)) BUG(8);
451             COND[LOC]=COND[LOC] + (1l << K);
452           }
453       }
454   }
455
456
457 /*  Read data for hints. */
458 void read_hints(FILE* database)
459   {
460     long K;
461     HNTMAX=0;
462     while((K=GETNUM(database)) != -1)
463       {
464         if(K <= 0 || K > HNTSIZ)BUG(7);
465         for (int I=1; I<=4; I++)
466           {
467             HINTS[K][I] =GETNUM(NULL);
468           } /* end loop */
469         HNTMAX=(HNTMAX>K ? HNTMAX : K);
470       }
471   }
472
473
474 /*  Read the sound/text info, store in OBJSND, OBJTXT, LOCSND. */
475 void read_sound_text(FILE* database)
476   {
477     long K;
478     while((K=GETNUM(database)) != -1)
479       {
480         long KK=GETNUM(NULL);
481         long I=GETNUM(NULL);
482         if(I != 0)
483           {
484             OBJSND[K]=(KK>0 ? KK : 0);
485             OBJTXT[K]=(I>0 ? I : 0);
486             continue;
487           }
488
489         LOCSND[K]=KK;
490       }
491   }
492
493 /*  Finish constructing internal data format */
494
495 /*  Having read in the database, certain things are now constructed.  PROPS are
496  *  set to zero.  We finish setting up COND by checking for forced-motion travel
497  *  entries.  The PLAC and FIXD arrays are used to set up ATLOC(N) as the first
498  *  object at location N, and LINK(OBJ) as the next object at the same location
499  *  as OBJ.  (OBJ>100 indicates that FIXED(OBJ-100)=LOC; LINK(OBJ) is still the
500  *  correct link to use.)  ABB is zeroed; it controls whether the abbreviated
501  *  description is printed.  Counts modulo 5 unless "LOOK" is used. */
502
503 void write_0d(FILE* c_file, FILE* header_file, long single, char* varname)
504 {
505   fprintf(c_file, "long %s = %ld;\n", varname, single);
506   fprintf(header_file, "extern long %s;\n", varname);
507 }
508
509 void write_1d(FILE* c_file, FILE* header_file, long array[], long dim, char* varname)
510 {
511   fprintf(c_file, "long %s[] = {\n", varname);
512   for (int i = 0; i < dim; ++i)
513     {
514       if (i % 10 == 0)
515         {
516           if (i > 0)
517             fprintf(c_file, "\n");
518           fprintf(c_file, "  ");
519         }
520       fprintf(c_file, "%ld, ", array[i]);
521     }
522   fprintf(c_file, "\n};\n");
523   fprintf(header_file, "extern long %s[%ld];\n", varname, dim);
524 }
525
526 void write_hints(FILE* c_file, FILE* header_file, long matrix[][5], long dim1, long dim2, char* varname)
527 {
528   fprintf(c_file, "long %s[][%ld] = {\n", varname, dim2);
529   for (int i = 0; i < dim1; ++i)
530     {
531       fprintf(c_file, "  {");
532       for (int j = 0; j < dim2; ++j)
533         {
534           fprintf(c_file, "%ld, ", matrix[i][j]);
535         }
536       fprintf(c_file, "},\n");
537     }
538   fprintf(c_file, "};\n");
539   fprintf(header_file, "extern long %s[%ld][%ld];\n", varname, dim1, dim2);
540 }
541
542 void write_files(FILE* c_file, FILE* header_file)
543 {
544   // preprocessor defines for the header
545   fprintf(header_file, "#define RTXSIZ 277\n");
546   fprintf(header_file, "#define CLSMAX 12\n");
547   fprintf(header_file, "#define LOCSIZ 185\n");
548   fprintf(header_file, "#define LINSIZ 12500\n");
549   fprintf(header_file, "#define TRNSIZ 5\n");
550   fprintf(header_file, "#define TABSIZ 330\n");
551   fprintf(header_file, "#define VRBSIZ 35\n");
552   fprintf(header_file, "#define HNTSIZ 20\n");
553   fprintf(header_file, "#define TRVSIZ 885\n");
554   fprintf(header_file, "\n");
555
556   // include the header in the C file
557   fprintf(c_file, "#include \"database.h\"\n");
558   fprintf(c_file, "\n");
559
560   // content variables
561   write_0d(c_file, header_file, LINUSE, "LINUSE");
562   write_0d(c_file, header_file, TRVS, "TRVS");
563   write_0d(c_file, header_file, CLSSES, "CLSSES");
564   write_0d(c_file, header_file, TRNVLS, "TRNVLS");
565   write_0d(c_file, header_file, TABNDX, "TABNDX");
566   write_0d(c_file, header_file, HNTMAX, "HNTMAX");
567   write_1d(c_file, header_file, PTEXT, 100 + 1, "PTEXT");
568   write_1d(c_file, header_file, RTEXT, RTXSIZ + 1, "RTEXT");
569   write_1d(c_file, header_file, CTEXT, CLSMAX + 1, "CTEXT");
570   write_1d(c_file, header_file, OBJSND, 100 + 1, "OBJSND");
571   write_1d(c_file, header_file, OBJTXT, 100 + 1, "OBJTXT");
572   write_1d(c_file, header_file, STEXT, LOCSIZ + 1, "STEXT");
573   write_1d(c_file, header_file, LTEXT, LOCSIZ + 1, "LTEXT");
574   write_1d(c_file, header_file, COND, LOCSIZ + 1, "COND");
575   write_1d(c_file, header_file, KEY, LOCSIZ + 1, "KEY");
576   write_1d(c_file, header_file, LOCSND, LOCSIZ + 1, "LOCSND");
577   write_1d(c_file, header_file, LINES, LINSIZ + 1, "LINES");
578   write_1d(c_file, header_file, CVAL, CLSMAX + 1, "CVAL");
579   write_1d(c_file, header_file, TTEXT, TRNSIZ + 1, "TTEXT");
580   write_1d(c_file, header_file, TRNVAL, TRNSIZ + 1, "TRNVAL");
581   write_1d(c_file, header_file, TRAVEL, TRVSIZ + 1, "TRAVEL");
582   write_1d(c_file, header_file, KTAB, TABSIZ + 1, "KTAB");
583   write_1d(c_file, header_file, ATAB, TABSIZ + 1, "ATAB");
584   write_1d(c_file, header_file, PLAC, 100 + 1, "PLAC");
585   write_1d(c_file, header_file, FIXD, 100 + 1, "FIXD");
586   write_1d(c_file, header_file, ACTSPK, VRBSIZ + 1, "ACTSPK");
587   write_hints(c_file, header_file, HINTS, HNTSIZ + 1, 5, "HINTS");
588 }
589
590 int main()
591 {
592   FILE* database = fopen("adventure.text", "r");
593   read_database(database);
594   fclose(database);
595
596   FILE* c_file = fopen("database.c", "w");
597   FILE* header_file = fopen("database.h", "w");
598   write_files(c_file, header_file);
599   fclose(c_file);
600   fclose(header_file);
601
602   return(EXIT_SUCCESS);
603 }