| 233 | |
| 234 | |
| 235 | static void fchecksize (LoadState *S, size_t size, const char *tname) { |
| 236 | if (LoadByte(S) != size) |
| 237 | error(S, luaO_pushfstring(S->L, "%s size mismatch in", tname)); |
| 238 | } |
| 239 | |
| 240 | |
| 241 | #define checksize(S,t) fchecksize(S,sizeof(t),#t) |
nothing calls this directly
no test coverage detected