summaryrefslogtreecommitdiffstats
path: root/core/mp_common.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/mp_common.h')
-rw-r--r--core/mp_common.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/core/mp_common.h b/core/mp_common.h
index 62c314d95b..6cb1da373d 100644
--- a/core/mp_common.h
+++ b/core/mp_common.h
@@ -21,6 +21,7 @@
#include <stdlib.h>
#include <stdbool.h>
+#include <stdint.h>
#include "compat/compiler.h"
#include "core/mp_talloc.h"
@@ -53,4 +54,9 @@ struct mp_rect {
void mp_rect_union(struct mp_rect *rc, const struct mp_rect *src);
bool mp_rect_intersection(struct mp_rect *rc, const struct mp_rect *rc2);
+char *mp_append_utf8_buffer(char *buffer, uint32_t codepoint);
+
+struct bstr;
+bool mp_parse_escape(struct bstr *code, char **str);
+
#endif /* MPLAYER_MPCOMMON_H */