This commit is contained in:
Igor Pavlov
2005-05-30 00:00:00 +00:00
committed by Kornel Lesiński
parent 8c1b5c7b7e
commit 3c510ba80b
926 changed files with 40559 additions and 23519 deletions

View File

@@ -1,18 +1,15 @@
// Common/IntToString.h
#pragma once
#ifndef __COMMON_INTTOSTRING_H
#define __COMMON_INTTOSTRING_H
#include "types.h"
#include <stddef.h>
#include "Types.h"
void ConvertUINT64ToString(UINT64 value, char *s);
void ConvertUINT64ToString(UINT64 value, wchar_t *s);
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);
void ConvertInt64ToString(Int64 value, char *s);
void ConvertInt64ToString(Int64 value, wchar_t *s);
#endif