summaryrefslogtreecommitdiff
path: root/utils/utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/utils.h')
-rw-r--r--utils/utils.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/utils/utils.h b/utils/utils.h
index c55ab5b69..0a3540938 100644
--- a/utils/utils.h
+++ b/utils/utils.h
@@ -1,11 +1,12 @@
/**
- * $Id: utils.h,v 1.6 2003/04/05 21:38:06 bursa Exp $
+ * $Id: utils.h,v 1.7 2003/04/11 21:06:51 bursa Exp $
*/
#ifndef _NETSURF_UTILS_UTILS_H_
#define _NETSURF_UTILS_UTILS_H_
#include <stdlib.h>
+#include "libxml/encoding.h"
void die(const char * const error);
char * strip(char * const s);
@@ -16,6 +17,8 @@ void xfree(void* p);
char * xstrdup(const char * const s);
char * load(const char * const path);
char * squash_whitespace(const char * s);
+char * tolat1(xmlChar * s);
+char *squash_tolat1(xmlChar *s);
char *url_join(const char* new, const char* base);
#endif