Delete the silly bitvec _s functions

This commit is contained in:
Nils O. Selåsdal
2013-10-14 19:01:56 +02:00
parent 6058be1c07
commit 41bb24bb61
2 changed files with 0 additions and 43 deletions
-8
View File
@@ -65,14 +65,6 @@ void uc_bv_set_all(struct UCBitVec *v);
* */
void uc_bv_set_bits_from_array(struct UCBitVec *v,char *array,size_t array_len);
// The _s ("secure") versions does boundary checking and assert() if they
// try to access a bit out of bounds.
void uc_bv_set_bit_s(struct UCBitVec *v,int b);
void uc_bv_clear_bit_s(struct UCBitVec *v,int b);
int uc_bv_get_bit_s(const struct UCBitVec *v,int b);
#ifdef __cplusplus
}