29#ifndef INCLUDE_MYSQL_STRINGS_INT2STR_H_
30#define INCLUDE_MYSQL_STRINGS_INT2STR_H_
41static inline char *
longlong2str(int64_t val,
char *dst,
int radix) {
42 return ll2str(val, dst, radix,
true);
49static inline char *
llstr(
long long value,
char *buff) {
54static inline char *
ullstr(
long long value,
char *buff) {
#define MYSQL_STRINGS_EXPORT
Definition: api.h:47
static char * longlong2str(int64_t val, char *dst, int radix)
Definition: int2str.h:41
static char * ullstr(long long value, char *buff)
Definition: int2str.h:54
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:56
static char * llstr(long long value, char *buff)
Definition: int2str.h:49
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:98