author | Wuzzy <Wuzzy2@mail.ru> |
Tue, 17 Jul 2018 12:55:07 +0200 | |
branch | 0.9.24 |
changeset 13591 | 9f05872969dc |
parent 12213 | bb5522e88ab2 |
permissions | -rw-r--r-- |
// Common/IntToString.h #ifndef __COMMON_INTTOSTRING_H #define __COMMON_INTTOSTRING_H #include <stddef.h> #include "Types.h" void ConvertUInt64ToString(UInt64 value, char *s, UInt32 base = 10); void ConvertUInt64ToString(UInt64 value, wchar_t *s); void ConvertInt64ToString(Int64 value, char *s); void ConvertInt64ToString(Int64 value, wchar_t *s); #endif