aboutsummaryrefslogtreecommitdiffstats
path: root/src/utf8.h
diff options
context:
space:
mode:
authorRafael G. Martins <rafael@rafaelmartins.eng.br>2016-07-07 22:59:54 +0200
committerRafael G. Martins <rafael@rafaelmartins.eng.br>2016-07-07 22:59:54 +0200
commit55365b5dc3fe086e5dc3f1b9b9ec5d0da2a4ca5e (patch)
treeb84eaf4ca91ca5795d9698058fcfc6e4404b8d5e /src/utf8.h
parent3854053b3c533bf1e72bd21cd36f4c5fe3a1b74a (diff)
downloadblogc-55365b5dc3fe086e5dc3f1b9b9ec5d0da2a4ca5e.tar.gz
blogc-55365b5dc3fe086e5dc3f1b9b9ec5d0da2a4ca5e.tar.bz2
blogc-55365b5dc3fe086e5dc3f1b9b9ec5d0da2a4ca5e.zip
*: fixed includes
this refactoring was done with the help of the 'include-what-you-use' program. if this breaks the build for you, please report!
Diffstat (limited to 'src/utf8.h')
-rw-r--r--src/utf8.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/utf8.h b/src/utf8.h
index 582ae1c..06fe07e 100644
--- a/src/utf8.h
+++ b/src/utf8.h
@@ -9,8 +9,9 @@
#ifndef _UTF_8_H
#define _UTF_8_H
-#include <inttypes.h>
#include <stdbool.h>
+#include <stddef.h>
+#include <stdint.h>
#include "utils.h"
bool blogc_utf8_validate(const uint8_t *str, size_t len);