Revision: | 1447 |
Committed: | Fri Jul 30 21:01:35 2004 UTC (20 years, 9 months ago) by gezelter |
Content type: | text/plain |
File size: | 280 byte(s) |
Log Message: | Initial import of OOPSE sources into cvs tree |
# | User | Rev | Content |
---|---|---|---|
1 | gezelter | 1447 | #ifndef __STRINGUTILS_H__ |
2 | #define __STRINGUTILS_H__ | ||
3 | |||
4 | #ifdef __cplusplus | ||
5 | extern "C" { | ||
6 | #endif | ||
7 | |||
8 | extern int count_tokens(char *line, char *delimiters); | ||
9 | int isEndLine(char *line); | ||
10 | int isBeginLine(char *line); | ||
11 | char* TrimSpaces(char *str); | ||
12 | |||
13 | #ifdef __cplusplus | ||
14 | } | ||
15 | #endif | ||
16 | |||
17 | #endif |