finished stix_bitatint()

This commit is contained in:
hyunghwan.chung
2015-12-26 05:11:10 +00:00
parent 60b90de172
commit 649a78472b
3 changed files with 156 additions and 6 deletions

View File

@ -222,8 +222,10 @@
* 2. the maximum number of bit shifts can be represented in the stix_oow_t type.
*/
# define STIX_OBJ_SIZE_MAX ((stix_oow_t)STIX_SMOOI_MAX)
# define STIX_OBJ_SIZE_BITS_MAX (STIX_OBJ_SIZE_MAX * 8)
#else
# define STIX_OBJ_SIZE_MAX ((stix_oow_t)STIX_TYPE_MAX(stix_oow_t))
# define STIX_OBJ_SIZE_BITS_MAX (STIX_OBJ_SIZE_MAX * 8)
#endif