mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-11 23:09:54 -06:00
19 lines
339 B
C
Executable File
19 lines
339 B
C
Executable File
// Common/IntToString.h
|
|
|
|
#pragma once
|
|
|
|
#ifndef __COMMON_INTTOSTRING_H
|
|
#define __COMMON_INTTOSTRING_H
|
|
|
|
#include "types.h"
|
|
|
|
void ConvertUINT64ToString(UINT64 value, char *s);
|
|
void ConvertUINT64ToString(UINT64 value, wchar_t *s);
|
|
|
|
void ConvertINT64ToString(INT64 value, char *s);
|
|
void ConvertINT64ToString(INT64 value, wchar_t *s);
|
|
|
|
#endif
|
|
|
|
|