| 240 | } |
| 241 | |
| 242 | static int BufferGetChar(Context* context) |
| 243 | { |
| 244 | if (context->m_BufferPos >= context->m_BufferSize) |
| 245 | return 0; |
| 246 | return context->m_Buffer[context->m_BufferPos++]; |
| 247 | } |
| 248 | |
| 249 | static bool BufferEof(Context* context) |
| 250 | { |
no outgoing calls
no test coverage detected