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

This commit is contained in:
ftang%netscape.com 2001-05-15 12:31:30 +00:00
parent 0832fa6938
commit 1c7d8d92a5

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)))
/**
*/