| 117 | |
| 118 | #define IB_MAX 128 |
| 119 | struct InputBuffer { |
| 120 | char buf[IB_MAX]; // Buffer holding the data. |
| 121 | int len; // Current length. |
| 122 | }; |
| 123 | |
| 124 | /* inputBuffer*() return values: */ |
| 125 | #define IB_ERR 0 // Sorry, unable to comply. |
nothing calls this directly
no outgoing calls
no test coverage detected