Returns a pointer to the first non-whitespace char in given string
| 245 | |
| 246 | // Returns a pointer to the first non-whitespace char in given string |
| 247 | char *SkipInitialWhitespace(char *s) { |
| 248 | while ((*s) != '\0' && isspace(*s)) |
| 249 | s++; |
| 250 | |
| 251 | return (s); |
| 252 | } |
| 253 | |
| 254 | // Read in the Messages |
| 255 | int ReadMessageFile(const char *filename) { |