libcfe  0.12.1
some useful C-functions
int_to_bit.h
Go to the documentation of this file.
1 #ifndef XINT_TO_BIT_H
2 #define XINT_TO_BIT_H
3 
4 #include <stdlib.h>
5 
9 #define int_to_bit(i,s) int_to_bit1(i,s,256)
10 
20 size_t int_to_bit1(unsigned long long i, unsigned char **s, unsigned int base);
21 
22 #endif /* XINT_TO_BIT_H */
size_t int_to_bit1(unsigned long long i, unsigned char **s, unsigned int base)
Definition: int_to_bit.c:6