28#ifndef INCLUDE_MYSQL_STRINGS_INT2STR_H_
29#define INCLUDE_MYSQL_STRINGS_INT2STR_H_
40static inline char *
longlong2str(int64_t val,
char *dst,
int radix) {
41 return ll2str(val, dst, radix,
true);
48static inline char *
llstr(
long long value,
char *buff) {
53static inline char *
ullstr(
long long value,
char *buff) {
#define MYSQL_STRINGS_EXPORT
Definition: api.h:46
static char * longlong2str(int64_t val, char *dst, int radix)
Definition: int2str.h:40
static char * ullstr(long long value, char *buff)
Definition: int2str.h:53
MYSQL_STRINGS_EXPORT char * ll2str(int64_t val, char *dst, int radix, bool upcase)
Converts a 64-bit integer value to its character form and moves it to the destination buffer followed...
Definition: int2str.cc:55
static char * llstr(long long value, char *buff)
Definition: int2str.h:48
MYSQL_STRINGS_EXPORT char * longlong10_to_str(int64_t val, char *dst, int radix)
Converts a 64-bit integer to its string representation in decimal notation.
Definition: int2str.cc:97