| 24 | #define FIXEDSTRING_HELP "Fixed STRING" |
| 25 | |
| 26 | static unsigned int |
| 27 | get_token_len(const char *s) |
| 28 | { |
| 29 | char c; |
| 30 | unsigned int i=0; |
| 31 | |
| 32 | c = s[i]; |
| 33 | while (c!='#' && c!='\0') { |
| 34 | i++; |
| 35 | c = s[i]; |
| 36 | } |
| 37 | return i; |
| 38 | } |
| 39 | |
| 40 | static const char * |
| 41 | get_next_token(const char *s) |
no outgoing calls
no test coverage detected