| 1295 | static const char *const delimits = " \t\n,;"; |
| 1296 | |
| 1297 | static void skip (const char **pc) { |
| 1298 | for (;;) { |
| 1299 | if (**pc != '\0' && strchr(delimits, **pc)) (*pc)++; |
| 1300 | else if (**pc == '#') { /* comment? */ |
| 1301 | while (**pc != '\n' && **pc != '\0') (*pc)++; /* until end-of-line */ |
| 1302 | } |
| 1303 | else break; |
| 1304 | } |
| 1305 | } |
| 1306 | |
| 1307 | static int getnum_aux (lua_State *L, lua_State *L1, const char **pc) { |
| 1308 | int res = 0; |
no outgoing calls
no test coverage detected