IntToString.h 361 B

123456789101112131415
  1. // Common/IntToString.h
  2. #ifndef __COMMON_INTTOSTRING_H
  3. #define __COMMON_INTTOSTRING_H
  4. #include <stddef.h>
  5. #include "Types.h"
  6. void ConvertUInt64ToString(UInt64 value, char *s, UInt32 base = 10);
  7. void ConvertUInt64ToString(UInt64 value, wchar_t *s);
  8. void ConvertInt64ToString(Int64 value, char *s);
  9. void ConvertInt64ToString(Int64 value, wchar_t *s);
  10. #endif