Returns a pointer to the first byte in the previously read character from mbbuf_get_char. */
| 168 | /* Returns a pointer to the first byte in the previously read character from |
| 169 | mbbuf_get_char. */ |
| 170 | MBBUF_INLINE char * |
| 171 | mbbuf_char_offset (mbbuf_t *mbbuf, mcel_t g) |
| 172 | { |
| 173 | if (mbbuf->offset < g.len) |
| 174 | unreachable (); |
| 175 | return mbbuf->buffer + (mbbuf->offset - g.len); |
| 176 | } |
| 177 | |
| 178 | _GL_INLINE_HEADER_END |
| 179 |
no outgoing calls
no test coverage detected