server/src/util/base36.h

22 lines
403 B
C
Raw Normal View History

2010-08-08 10:06:34 +02:00
#ifndef H_UTIL_BASE36
#define H_UTIL_BASE36
#include <stddef.h>
2010-08-08 10:06:34 +02:00
#ifdef __cplusplus
extern "C" {
#endif
const char *itoa36(int i);
int atoi36(const char *s);
2018-02-25 19:17:20 +01:00
const char *itoa36_r(int i, char *result, size_t len);
const char *itoab_r(int i, int base, char *result, size_t len);
const char *itoab(int i, int base);
const char *itoa10(int i);
2010-08-08 10:06:34 +02:00
#ifdef __cplusplus
}
#endif
#endif