** Create a library string that, when deallocated, will unload 'plib' */
| 345 | ** Create a library string that, when deallocated, will unload 'plib' |
| 346 | */ |
| 347 | static void createlibstr (lua_State *L, void *plib) { |
| 348 | /* common content for all library strings */ |
| 349 | static const char dummy[] = "01234567890"; |
| 350 | lua_pushexternalstring(L, dummy, sizeof(dummy) - 1, freelib, plib); |
| 351 | } |
| 352 | |
| 353 | |
| 354 | /* |
no test coverage detected