mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-11 18:07:08 -06:00
4.44 beta
This commit is contained in:
committed by
Kornel Lesiński
parent
804edc5756
commit
d9666cf046
15
CPP/Common/IntToString.h
Executable file
15
CPP/Common/IntToString.h
Executable file
@@ -0,0 +1,15 @@
|
||||
// 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
|
||||
Reference in New Issue
Block a user