| 39 | */ |
| 40 | |
| 41 | void |
| 42 | _cupsCharmapFlush(void) |
| 43 | { |
| 44 | #ifdef HAVE_ICONV_H |
| 45 | if (map_from_utf8 != (iconv_t)-1) |
| 46 | { |
| 47 | iconv_close(map_from_utf8); |
| 48 | map_from_utf8 = (iconv_t)-1; |
| 49 | } |
| 50 | |
| 51 | if (map_to_utf8 != (iconv_t)-1) |
| 52 | { |
| 53 | iconv_close(map_to_utf8); |
| 54 | map_to_utf8 = (iconv_t)-1; |
| 55 | } |
| 56 | |
| 57 | map_encoding = CUPS_AUTO_ENCODING; |
| 58 | #endif /* HAVE_ICONV_H */ |
| 59 | } |
| 60 | |
| 61 | |
| 62 | /* |
no outgoing calls