summaryrefslogtreecommitdiff
path: root/utils/idna.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-11-14 13:46:08 +0000
committerVincent Sanders <vince@kyllikki.org>2014-11-14 13:46:08 +0000
commit97759f62afba6a53eeb3d7d338816c3833015994 (patch)
tree0df2fca80adbb39bd6572329b5f62acdbe870a2a /utils/idna.c
parent564944c244008f256583efb97d52a7f4aa333d0a (diff)
downloadnetsurf-97759f62afba6a53eeb3d7d338816c3833015994.tar.gz
netsurf-97759f62afba6a53eeb3d7d338816c3833015994.tar.bz2
USe the externally built conveniance utf8proc library
Diffstat (limited to 'utils/idna.c')
-rw-r--r--utils/idna.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/utils/idna.c b/utils/idna.c
index 0a492fadc..b8bfbd13c 100644
--- a/utils/idna.c
+++ b/utils/idna.c
@@ -16,14 +16,16 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-/** \file
- * NetSurf international domain name handling (implementation).
+/**
+ * \file
+ * NetSurf international domain name handling implementation.
*/
#include <stddef.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
+#include <libutf8proc/utf8proc.h>
#include "utils/errors.h"
#include "utils/idna.h"
@@ -31,7 +33,6 @@
#include "utils/log.h"
#include "utils/punycode.h"
#include "utils/utf8.h"
-#include "utils/utf8proc.h"
#include "utils/utils.h"