| 40 | #endif |
| 41 | |
| 42 | static inline char *reencode_string(const char *in, |
| 43 | const char *out_encoding, |
| 44 | const char *in_encoding) |
| 45 | { |
| 46 | return reencode_string_len(in, strlen(in), |
| 47 | out_encoding, in_encoding, |
| 48 | NULL); |
| 49 | } |
| 50 | |
| 51 | int mbs_chrlen(const char **text, size_t *remainder_p, const char *encoding); |
| 52 |
no test coverage detected