| 49 | } |
| 50 | |
| 51 | ms_bitarray msAllocBitArray(int numbits) |
| 52 | { |
| 53 | ms_bitarray array = calloc((numbits + MS_ARRAY_BIT - 1) / MS_ARRAY_BIT, MS_ARRAY_BIT); |
| 54 | |
| 55 | return(array); |
| 56 | } |
| 57 | |
| 58 | int msGetBit(ms_bitarray array, int index) |
| 59 | { |
no outgoing calls
no test coverage detected