| 431 | } |
| 432 | |
| 433 | int is_encoding_utf8(const char *name) |
| 434 | { |
| 435 | if (!name) |
| 436 | return 1; |
| 437 | if (same_utf_encoding("utf-8", name)) |
| 438 | return 1; |
| 439 | return 0; |
| 440 | } |
| 441 | |
| 442 | int same_encoding(const char *src, const char *dst) |
| 443 | { |
no test coverage detected