00001 #ifndef GEN_FXN_H 00002 #define GEN_FXN_H 00003 #include <stdio.h> 00004 00005 int writeBuffer(char *buffer, int wlen, char *name); 00006 int getFileSize(FILE *file, int *size); 00007 int formatConvert(char *inputFile); 00008 00009 void stripWhiteSpace(char *line); 00010 void removeQuotes(char *line); 00011 void leftShift(char *line, char num); 00012 void parse(char *line, char *word, char *ws); 00013 unsigned int getWord(char *word, char *hexStr, char base); 00014 00015 #endif //Multiple-inclusion protection.