michael@0: // Common/IntToString.h michael@0: michael@0: #ifndef __COMMON_INTTOSTRING_H michael@0: #define __COMMON_INTTOSTRING_H michael@0: michael@0: #include michael@0: #include "Types.h" michael@0: michael@0: void ConvertUInt64ToString(UInt64 value, char *s, UInt32 base = 10); michael@0: void ConvertUInt64ToString(UInt64 value, wchar_t *s); michael@0: michael@0: void ConvertInt64ToString(Int64 value, char *s); michael@0: void ConvertInt64ToString(Int64 value, wchar_t *s); michael@0: michael@0: #endif