Advance `s.buf` by `n`, and decrease length. */
| 27 | |
| 28 | /* Advance `s.buf` by `n`, and decrease length. */ |
| 29 | static inline void string_view_consume(struct string_view *s, int n) |
| 30 | { |
| 31 | s->buf += n; |
| 32 | s->len -= n; |
| 33 | } |
| 34 | |
| 35 | /* |
| 36 | * Decode and encode a varint. Returns the number of bytes read/written, or a |
no outgoing calls
no test coverage detected