| 248 | |
| 249 | |
| 250 | LUAMOD_API int luaopen_utf8 (lua_State *L) { |
| 251 | luaL_newlib(L, funcs); |
| 252 | lua_pushlstring(L, UTF8PATT, sizeof(UTF8PATT)/sizeof(char) - 1); |
| 253 | lua_setfield(L, -2, "charpattern"); |
| 254 | return 1; |
| 255 | } |
| 256 |
nothing calls this directly
no test coverage detected