#include "M3Constants.hh"
#include <stdint.h>
Go to the source code of this file.
|
void | u32toa (uint32_t value, char *buffer) |
| Quickly convert a 32-bit unsigned integer to a char array (buffer should already be allocated) More...
|
|
void | i32toa (int32_t value, char *buffer) |
| Quickly convert a 32-bit signed integer to a char array (buffer should already be allocated) More...
|
|
void | u64toa (uint64_t value, char *buffer) |
| Quickly convert a 64-bit unsigned integer to a char array (buffer should already be allocated) More...
|
|
void | i64toa (int64_t value, char *buffer) |
| Quickly convert a 64-bit signed integer to a char array (buffer should already be allocated) More...
|
|
unsigned | CountDecimalDigit32 (uint32_t n) |
|
unsigned | CountDecimalDigit64 (uint64_t n) |
|