ing_suffix("foo") */
| 894 | |
| 895 | /* ing_suffix("foo") */ |
| 896 | staticfn int |
| 897 | nhl_ing_suffix(lua_State *L) |
| 898 | { |
| 899 | int argc = lua_gettop(L); |
| 900 | |
| 901 | if (argc == 1) |
| 902 | lua_pushstring(L, ing_suffix(luaL_checkstring(L, 1))); |
| 903 | else |
| 904 | nhl_error(L, "Wrong args"); |
| 905 | |
| 906 | return 1; |
| 907 | } |
| 908 | |
| 909 | /* an("foo") */ |
| 910 | staticfn int |
nothing calls this directly
no test coverage detected