** Open string library */
| 1027 | ** Open string library |
| 1028 | */ |
| 1029 | LUAMOD_API int luaopen_string (lua_State *L) { |
| 1030 | luaL_newlib(L, strlib); |
| 1031 | createmetatable(L); |
| 1032 | return 1; |
| 1033 | } |
| 1034 | |
| 1035 | #if defined(_KERNEL) |
| 1036 |
no test coverage detected