| 907 | return pstr->raw_mbs[pstr->raw_mbs_idx + pstr->cur_idx++]; |
| 908 | } |
| 909 | |
| 910 | static void |
| 911 | internal_function |
| 912 | re_string_destruct (re_string_t *pstr) |
| 913 | { |
| 914 | #ifdef RE_ENABLE_I18N |
| 915 | re_free (pstr->wcs); |
| 916 | re_free (pstr->offsets); |
| 917 | #endif /* RE_ENABLE_I18N */ |
| 918 | if (pstr->mbs_allocated) |
| 919 | re_free (pstr->mbs); |
| 920 | } |
| 921 | |
| 922 | /* Return the context at IDX in INPUT. */ |
no outgoing calls
no test coverage detected