summaryrefslogtreecommitdiff
path: root/atari/encoding.h
diff options
context:
space:
mode:
Diffstat (limited to 'atari/encoding.h')
-rw-r--r--atari/encoding.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/atari/encoding.h b/atari/encoding.h
new file mode 100644
index 000000000..e2dd4ca4d
--- /dev/null
+++ b/atari/encoding.h
@@ -0,0 +1,19 @@
+#ifndef NS_ATARI_ENCODING_H
+#define NS_ATARI_ENCODING_H
+
+#include <inttypes.h>
+#include <assert.h>
+#include <stdbool.h>
+#include <windom.h>
+
+#include "css/css.h"
+#include "render/font.h"
+#include "utils/utf8.h"
+
+utf8_convert_ret local_encoding_to_utf8(const char *string,
+ size_t len,
+ char **result);
+
+int atari_to_ucs4( unsigned char atarichar);
+
+#endif