mirror of
https://github.com/tailix/libkernaux.git
synced 2024-10-30 11:54:01 -04:00
21 lines
372 B
C
21 lines
372 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_ITOA10_BUFFER_SIZE 21
|
|
|
|
void kernaux_utoa10(uint64_t value, char *buffer);
|
|
void kernaux_itoa10(int64_t value, char *buffer);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|