| 283 | |
| 284 | |
| 285 | LUAMOD_API int luaopen_utf8 (lua_State *L) { |
| 286 | luaL_newlib(L, funcs); |
| 287 | lua_pushlstring(L, UTF8PATT, sizeof(UTF8PATT)/sizeof(char) - 1); |
| 288 | lua_setfield(L, -2, "charpattern"); |
| 289 | return 1; |
| 290 | } |
| 291 |
nothing calls this directly
no test coverage detected