Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 // Common/IntToString.h
3 #ifndef __COMMON_INTTOSTRING_H
4 #define __COMMON_INTTOSTRING_H
6 #include <stddef.h>
7 #include "Types.h"
9 void ConvertUInt64ToString(UInt64 value, char *s, UInt32 base = 10);
10 void ConvertUInt64ToString(UInt64 value, wchar_t *s);
12 void ConvertInt64ToString(Int64 value, char *s);
13 void ConvertInt64ToString(Int64 value, wchar_t *s);
15 #endif