/* // This file is created by Template of umsCodeGenerator version 0.3 candidate */ /* // Declartion of Structures */ struct Vector; /* // Definition of Structures */ struct Vector { char * name; int order; int value[3]; }; /* // Declartion of Variables */ extern struct Vector vect; extern int hasComment; extern char * comment; extern int hasComment; /* // Declartion of Decoder */ int parse(char input[], int len); /* // Declartion of Reader */ extern void userProgram(void);