summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2008-08-23 16:19:59 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2008-08-23 16:19:59 +0000
commit7be654c21f3b31862db4bad0a1162af40deb431e (patch)
tree77e7c01967bf4cd95f57d4ff66f1872960e19d67
parent59d45715cded1f4fbb49f9d70d53c24ef3b6bca2 (diff)
downloadnetsurf-7be654c21f3b31862db4bad0a1162af40deb431e.tar.gz
netsurf-7be654c21f3b31862db4bad0a1162af40deb431e.tar.bz2
Header file for functions in utf8.c
svn path=/trunk/netsurf/; revision=5186
-rwxr-xr-xamiga/utf8.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/amiga/utf8.h b/amiga/utf8.h
new file mode 100755
index 000000000..9a11ee1bd
--- /dev/null
+++ b/amiga/utf8.h
@@ -0,0 +1,24 @@
+/*
+ * Copyright 2008 Chris Young <chris@unsatisfactorysoftware.co.uk>
+ *
+ * This file is part of NetSurf, http://www.netsurf-browser.org/
+ *
+ * NetSurf is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * NetSurf is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef AMIGA_UTF8_H
+#define AMIGA_UTF8_H
+//char *ami_utf8_alloc(char *string);
+ULONG ami_utf8_to_any(const char *string, size_t len, char **result);
+void ami_utf8_free(char *ptr);
+#endif