** Get a string or symbol as a string. Operates like getString(), but also ** supports symbols. */
| 190 | ** supports symbols. |
| 191 | */ |
| 192 | static char *getToken(void) { |
| 193 | msyylex(); |
| 194 | return msStrdup(msyystring_buffer); |
| 195 | } |
| 196 | |
| 197 | /* |
| 198 | ** Load a string from the map file. A "string" is defined in lexer.l. |
no test coverage detected