| 282 | |
| 283 | |
| 284 | static void fchecksize (LoadState *S, size_t size, const char *tname) { |
| 285 | if (loadByte(S) != size) |
| 286 | error(S, luaO_pushfstring(S->L, "%s size mismatch", tname)); |
| 287 | } |
| 288 | |
| 289 | |
| 290 | #define checksize(S,t) fchecksize(S,sizeof(t),#t) |
nothing calls this directly
no test coverage detected