| 356 | }; |
| 357 | |
| 358 | static inline mcel_t |
| 359 | mbbuf_get_saved_char (mbbuf_t *mbbuf, bool *have_saved, mcel_t *saved_g) |
| 360 | { |
| 361 | if (*have_saved) |
| 362 | { |
| 363 | *have_saved = false; |
| 364 | return *saved_g; |
| 365 | } |
| 366 | return mbbuf_get_char (mbbuf); |
| 367 | } |
| 368 | |
| 369 | static inline enum field_terminator |
| 370 | skip_whitespace_run (mbbuf_t *mbuf, struct mbfield_parser *parser, |
no test coverage detected