| 768 | } |
| 769 | |
| 770 | static inline wint_t |
| 771 | internal_function __attribute ((pure)) |
| 772 | re_string_wchar_at (const re_string_t *pstr, int idx) |
| 773 | { |
| 774 | if (pstr->mb_cur_max == 1) |
| 775 | return (wint_t) pstr->mbs[idx]; |
| 776 | return (wint_t) pstr->wcs[idx]; |
| 777 | } |
| 778 | |
| 779 | # ifndef NOT_IN_libc |
no outgoing calls
no test coverage detected