* rbuf_start - helper to get pointert to unconsumed bytes in rbuf * @rbuf: the struct rbuf */
| 107 | * @rbuf: the struct rbuf |
| 108 | */ |
| 109 | static inline char *rbuf_start(const struct rbuf *rbuf) |
| 110 | { |
| 111 | return membuf_elems(&rbuf->m); |
| 112 | } |
| 113 | |
| 114 | /** |
| 115 | * rbuf_fill_all - read rest of file into a buffer. |
no outgoing calls