#include <stdio.h>#include <stdlib.h>#include "advent.h"Go to the source code of this file.
Functions | |
| _PROTOTYPE (int main,(void)) | |
| _PROTOTYPE (void file_error,(char *)) | |
| _PROTOTYPE (void encode,(unsigned char *)) | |
| int | main () |
| void | file_error (char *filename) |
| void | encode (unsigned char *msg) |
Variables | |
| _CONST unsigned char | key [4] = {'c' | 0x80, 'L' | 0x80, 'y' | 0x80, 'D' | 0x80} |
| _PROTOTYPE | ( | void | encode, | |
| (unsigned char *) | ||||
| ) |
| _PROTOTYPE | ( | void | file_error, | |
| (char *) | ||||
| ) |
| _PROTOTYPE | ( | int | main, | |
| (void) | ||||
| ) |
program SETUP.C * execution will read the four adventure text files * files; "advent1.txt", "advent2.txt", "advent3.txt" & * "advent4.txt". it will create the file "advtext.h" * which is an Index Sequential Access Method (ISAM) * header to be included into "advent.c" before the * header "advdec.h" is included.
1.5.8