1
0
Fork 0
mirror of https://github.com/tailix/libkernaux.git synced 2024-11-13 11:04:27 -05:00
libkernaux/include/kernaux/ntoa.h

21 lines
370 B
C

#ifndef KERNAUX_INCLUDED_NTOA
#define KERNAUX_INCLUDED_NTOA
#ifdef __cplusplus
extern "C" {
#endif
#include <stdint.h>
// uint64_t: "18446744073709551615"
// int64_t: "-9223372036854775808"
#define KERNAUX_ITOA_BUFFER_SIZE 21
void kernaux_utoa10(uint64_t value, char *buffer);
void kernaux_itoa10(int64_t value, char *buffer);
#ifdef __cplusplus
}
#endif
#endif