libcfe  0.12.1
some useful C-functions
int_to_char.h
Go to the documentation of this file.
1 #ifndef XINT_TO_CHAR_H
2 #define XINT_TO_CHAR_H
3 
4 #include <stdlib.h>
5 #include <stdint.h>
6 
18 size_t int_to_char(long long i, char **s, unsigned int min_len, uint8_t base);
19 
29 size_t int_to_char_with_decimal(long long i, char **s, uint8_t num);
30 
31 #endif /* XINT_TO_CHAR_H */
size_t int_to_char_with_decimal(long long i, char **s, uint8_t num)
Definition: int_to_char.c:36
size_t int_to_char(long long i, char **s, unsigned int min_len, uint8_t base)
Definition: int_to_char.c:12