Returns a pointer to the first non-whitespace char in given string
| 204 | |
| 205 | // Returns a pointer to the first non-whitespace char in given string |
| 206 | char *SkipInitialWhitespace(char *s) { |
| 207 | while ((*s) != '\0' && isspace(*s)) |
| 208 | s++; |
| 209 | |
| 210 | return (s); |
| 211 | } |
| 212 | |
| 213 | // Read in the Messages |
| 214 | int ReadMessageFile(const char *filename) { |