add explicit freetype2 linking
[charfbuzz.git] / hb-ot-tag.c
blobbfa3d45093e12bf9aa7a0a8920d6a573145e1f99
1 /*
2 *Port from c++ is protected by a GNU Lesser GPLv3
3 Copyright © 2013 Sylvain BERTRAND <sylvain.bertrand@gmail.com>
4 <sylware@legeek.net>
5 */
6 #include <stddef.h>
8 #include "hb.h"
9 #include "hb-private.h"
10 #include "hb-ot.h"
12 hb_script_t hb_ot_tag_to_script(hb_tag_t tag)
14 (void)tag;
15 return HB_SCRIPT_INVALID;
18 hb_language_t hb_ot_tag_to_language(hb_tag_t tag)
20 (void)tag;
21 return HB_LANGUAGE_INVALID;
24 hb_tag_t hb_ot_tag_from_language(hb_language_t language)
26 (void)language;
27 return HB_OT_TAG_DEFAULT_LANGUAGE;
30 void hb_ot_tags_from_script(hb_script_t script, hb_tag_t * script_tag_1,
31 hb_tag_t * script_tag_2)
33 (void)script;
34 (void)script_tag_1;
35 (void)script_tag_2;