add new macro. fix bug 80772. r/sr=notyet

git-svn-id: svn://10.0.0.236/trunk@94987 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
ftang%netscape.com 2001-05-15 12:31:30 +00:00
parent 7fd978c74e
commit c993644839

View File

@ -37,6 +37,7 @@
*/
#define IS_REPRESENTABLE(info, c) (((info)[(c) >> 5] >> ((c) & 0x1f)) & 1L)
#define SET_REPRESENTABLE(info, c) (info)[(c) >> 5] |= (1L << ((c) & 0x1f))
#define CLEAR_REPRESENTABLE(info, c) (info)[(c) >> 5] &= (~(1L << ((c) & 0x1f)))
/**
*/