added stix_bitandints() and stix_bitorints()

This commit is contained in:
hyunghwan.chung
2015-12-10 14:23:09 +00:00
parent 9d88821c9b
commit 887a03c05e
5 changed files with 338 additions and 2 deletions

View File

@ -1106,6 +1106,29 @@ stix_oop_t stix_divints (
stix_oop_t* rem
);
stix_oop_t stix_bitandints (
stix_t* stix,
stix_oop_t x,
stix_oop_t y
);
stix_oop_t stix_bitorints (
stix_t* stix,
stix_oop_t x,
stix_oop_t y
);
stix_oop_t stix_bitxorints (
stix_t* stix,
stix_oop_t x,
stix_oop_t y
);
stix_oop_t stix_bitinvertint (
stix_t* stix,
stix_oop_t x
);
stix_oop_t stix_strtoint (
stix_t* stix,
const stix_ooch_t* str,