| 395 | |
| 396 | /* buffer used by 'luaO_pushvfstring' */ |
| 397 | typedef struct BuffFS { |
| 398 | lua_State *L; |
| 399 | int pushed; /* true if there is a part of the result on the stack */ |
| 400 | int blen; /* length of partial string in 'space' */ |
| 401 | char space[BUFVFS]; /* holds last part of the result */ |
| 402 | } BuffFS; |
| 403 | |
| 404 | |
| 405 | /* |
nothing calls this directly
no outgoing calls
no test coverage detected