| 169 | |
| 170 | |
| 171 | static void buffreplace (LexState *ls, char from, char to) { |
| 172 | size_t n = luaZ_bufflen(ls->buff); |
| 173 | char *p = luaZ_buffer(ls->buff); |
| 174 | while (n--) |
| 175 | if (p[n] == from) p[n] = to; |
| 176 | } |
| 177 | |
| 178 | |
| 179 | static void trydecpoint (LexState *ls, SemInfo *seminfo) { |
no outgoing calls
no test coverage detected