#ifndef GEN_FXN_H #define GEN_FXN_H int writeBuffer(char *buffer, int wlen, char *name); int getFileSize(FILE *file, int *size); int formatConvert(char *inputFile); void stripWhiteSpace(char *line); void removeQuotes(char *line); void leftShift(char *line, char num); void parse(char *line, char *word, char *ws); unsigned int getWord(char *word, char *hexStr, char base); #endif //Multiple-inclusion protection.