file buffer (the content of the buffer can be stored elsewhere) */
| 269 | #if !defined(EMSCRIPTEN) |
| 270 | /* file buffer (the content of the buffer can be stored elsewhere) */ |
| 271 | void file_buffer_init(FileBuffer *bs) |
| 272 | { |
| 273 | bs->data = NULL; |
| 274 | bs->allocated_size = 0; |
| 275 | } |
| 276 | |
| 277 | void file_buffer_reset(FileBuffer *bs) |
| 278 | { |
no outgoing calls
no test coverage detected