| 3116 | } |
| 3117 | |
| 3118 | static uint32_t prevChar(struct linenoiseState* l) { |
| 3119 | return Utf8Proc::previousGraphemeCluster(l->buf, l->len, l->pos); |
| 3120 | } |
| 3121 | |
| 3122 | static uint32_t nextChar(struct linenoiseState* l) { |
| 3123 | return utf8proc_next_grapheme(l->buf, l->len, l->pos); |
no outgoing calls
no test coverage detected