Initial commit
[charfbuzz.git] / hb-ot-tag.c
blob42faaca3f7ebdafc1232c6810b5ea2124896a95b
1 // C99 port from c++ is protected by a GNU Lesser GPLv3
2 // Copyright © 2013 Sylvain BERTRAND <sylvain.bertrand@gmail.com>
3 // <sylware@legeek.net>
4 #include <stddef.h>
6 #include "hb.h"
7 #include "hb-private.h"
8 #include "hb-ot.h"
10 hb_script_t
11 hb_ot_tag_to_script (hb_tag_t tag)
13 (void)tag;
14 return HB_SCRIPT_INVALID;
17 hb_language_t
18 hb_ot_tag_to_language (hb_tag_t tag)
20 (void)tag;
21 return HB_LANGUAGE_INVALID;
24 hb_tag_t
25 hb_ot_tag_from_language (hb_language_t language)
27 (void)language;
28 return HB_OT_TAG_DEFAULT_LANGUAGE;
31 void
32 hb_ot_tags_from_script (hb_script_t script,
33 hb_tag_t *script_tag_1,
34 hb_tag_t *script_tag_2)
36 (void)script;
37 (void)script_tag_1;
38 (void)script_tag_2;