| 278 | |
| 279 | |
| 280 | LUAMOD_API int luaopen_utf8 (lua_State *L) { |
| 281 | luaL_newlib(L, funcs); |
| 282 | lua_pushlstring(L, UTF8PATT, sizeof(UTF8PATT)/sizeof(char) - 1); |
| 283 | lua_setfield(L, -2, "charpattern"); |
| 284 | return 1; |
| 285 | } |
| 286 |
nothing calls this directly
no test coverage detected