| 571 | } |
| 572 | |
| 573 | static int fileGetbuf (gdIOCtx * ctx, void *buf, int size) |
| 574 | { |
| 575 | fileIOCtx *fctx; |
| 576 | fctx = (fileIOCtx *) ctx; |
| 577 | |
| 578 | return (msIO_fread (buf, 1, size, fctx->f)); |
| 579 | |
| 580 | } |
| 581 | |
| 582 | static void filePutchar (gdIOCtx * ctx, int a) |
| 583 | { |
nothing calls this directly
no test coverage detected