| 27 | #define DumpVar(x,D) DumpMem(&x,1,sizeof(x),D) |
| 28 | |
| 29 | static void DumpBlock(const void* b, size_t size, DumpState* D) |
| 30 | { |
| 31 | if (D->status==0) |
| 32 | { |
| 33 | lua_unlock(D->L); |
| 34 | D->status=(*D->writer)(D->L,b,size,D->data); |
| 35 | lua_lock(D->L); |
| 36 | } |
| 37 | } |
| 38 | |
| 39 | static void DumpChar(int y, DumpState* D) |
| 40 | { |
no outgoing calls
no test coverage detected