commit | acdba3f90b232fc12fcb200dca2584481b339118 | [log] [tgz] |
---|---|---|
author | Behdad Esfahbod <behdad@behdad.org> | Fri Jul 23 15:11:18 2010 -0400 |
committer | Behdad Esfahbod <behdad@behdad.org> | Fri Jul 23 15:39:27 2010 -0400 |
tree | 78e26d991dc7923471ec8c2a623d185d20c8f09e | |
parent | cc6d52279d10a2edcf0d86c3a18a79ff4f6d3858 [diff] [blame] |
Prefer C linkage
diff --git a/src/hb-icu.c b/src/hb-icu.c index dc97a54..44b92af 100644 --- a/src/hb-icu.c +++ b/src/hb-icu.c
@@ -35,6 +35,9 @@ #include <unicode/uchar.h> #include <unicode/uscript.h> +HB_BEGIN_DECLS + + static hb_codepoint_t hb_icu_get_mirroring (hb_codepoint_t unicode) { return u_charMirror(unicode); } static unsigned int hb_icu_get_combining_class (hb_codepoint_t unicode) { return u_getCombiningClass (unicode); } @@ -246,3 +249,6 @@ { return &icu_ufuncs; } + + +HB_END_DECLS