Returns a pointer to the first non-whitespace char in given string
| 194 | |
| 195 | // Returns a pointer to the first non-whitespace char in given string |
| 196 | char *SkipInitialWhitespace(char *s) { |
| 197 | while ((*s) != '\0' && isspace(*s)) |
| 198 | s++; |
| 199 | |
| 200 | return (s); |
| 201 | } |
| 202 | |
| 203 | // Read in the Messages |
| 204 | int ReadMessageFile(const char *filename) { |