Returns a pointer to the first non-whitespace char in given string
| 1079 | |
| 1080 | // Returns a pointer to the first non-whitespace char in given string |
| 1081 | char *SkipInitialWhitespace(char *s) { |
| 1082 | while ((*s) != '\0' && isspace(*s)) |
| 1083 | s++; |
| 1084 | |
| 1085 | return (s); |
| 1086 | } |
| 1087 | |
| 1088 | // Read in the Messages |
| 1089 | int ReadMessageFile(const char *filename) { |