summaryrefslogtreecommitdiffstats
path: root/mpvcore/charset_conv.h
diff options
context:
space:
mode:
Diffstat (limited to 'mpvcore/charset_conv.h')
-rw-r--r--mpvcore/charset_conv.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/mpvcore/charset_conv.h b/mpvcore/charset_conv.h
deleted file mode 100644
index 0b2874f0ec..0000000000
--- a/mpvcore/charset_conv.h
+++ /dev/null
@@ -1,19 +0,0 @@
-#ifndef MP_CHARSET_CONV_H
-#define MP_CHARSET_CONV_H
-
-#include <stdbool.h>
-#include "mpvcore/bstr.h"
-
-enum {
- MP_ICONV_VERBOSE = 1, // print errors instead of failing silently
- MP_ICONV_ALLOW_CUTOFF = 2, // allow partial input data
- MP_STRICT_UTF8 = 4, // don't fall back to UTF-8-BROKEN when guessing
-};
-
-bool mp_charset_is_utf8(const char *user_cp);
-bool mp_charset_requires_guess(const char *user_cp);
-const char *mp_charset_guess(bstr buf, const char *user_cp, int flags);
-bstr mp_charset_guess_and_conv_to_utf8(bstr buf, const char *user_cp, int flags);
-bstr mp_iconv_to_utf8(bstr buf, const char *cp, int flags);
-
-#endif