Make HB_TAG_CHAR4 private
It's just sugar.
This commit is contained in:
parent
7ff7401c92
commit
4188096a77
@ -55,10 +55,7 @@ typedef int hb_bool_t;
|
||||
|
||||
typedef uint32_t hb_tag_t;
|
||||
#define HB_TAG(a,b,c,d) ((hb_tag_t)((((uint8_t)(a))<<24)|(((uint8_t)(b))<<16)|(((uint8_t)(c))<<8)|((uint8_t)(d))))
|
||||
#define HB_TAG_CHAR4(s) (HB_TAG(((const char *) s)[0], \
|
||||
((const char *) s)[1], \
|
||||
((const char *) s)[2], \
|
||||
((const char *) s)[3]))
|
||||
|
||||
#define HB_TAG_NONE HB_TAG(0,0,0,0)
|
||||
|
||||
hb_tag_t hb_tag_from_string (const char *s);
|
||||
|
@ -263,12 +263,17 @@ typedef int hb_mutex_t;
|
||||
#define hb_be_uint32_cmp(a,b) (a[0] == b[0] && a[1] == b[1] && a[2] == b[2] && a[3] == b[3])
|
||||
|
||||
|
||||
/* ASCII character handling */
|
||||
/* ASCII tag/character handling */
|
||||
|
||||
#define ISALPHA(c) (((c) >= 'a' && (c) <= 'z') || ((c) >= 'A' && (c) <= 'Z'))
|
||||
#define TOUPPER(c) (((c) >= 'a' && (c) <= 'z') ? (c) - 'a' + 'A' : (c))
|
||||
#define TOLOWER(c) (((c) >= 'A' && (c) <= 'Z') ? (c) - 'A' + 'a' : (c))
|
||||
|
||||
#define HB_TAG_CHAR4(s) (HB_TAG(((const char *) s)[0], \
|
||||
((const char *) s)[1], \
|
||||
((const char *) s)[2], \
|
||||
((const char *) s)[3]))
|
||||
|
||||
|
||||
/* Debug */
|
||||
|
||||
|
@ -86,8 +86,6 @@ test_types_tag (void)
|
||||
|
||||
g_assert_cmphex (HB_TAG ('a','B','c','D'), ==, 0x61426344);
|
||||
|
||||
g_assert_cmphex (HB_TAG_CHAR4 ("aBcD"), ==, 0x61426344);
|
||||
|
||||
g_assert_cmphex (hb_tag_from_string ("aBcDe"), ==, 0x61426344);
|
||||
g_assert_cmphex (hb_tag_from_string ("aBcD"), ==, 0x61426344);
|
||||
g_assert_cmphex (hb_tag_from_string ("aBc"), ==, 0x61426320);
|
||||
|
Loading…
Reference in New Issue
Block a user