| 95 | static const int ZC_BUFSIZE = IO_BUFFER_SIZE; |
| 96 | |
| 97 | static inline int get(BurpGlobals* tdgbl) |
| 98 | { |
| 99 | if (tdgbl->mvol_io_cnt <= 0) |
| 100 | mvol_read(NULL, NULL); |
| 101 | return (--tdgbl->mvol_io_cnt >= 0 ? *tdgbl->mvol_io_ptr++ : 255); |
| 102 | } |
| 103 | |
| 104 | static inline void put(BurpGlobals* tdgbl, UCHAR c) |
| 105 | { |
no test coverage detected