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