1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#ifndef EASTL_USER_CONFIG_HPP
#define EASTL_USER_CONFIG_HPP 1
#include <string.h>
extern "C" {
static inline int snprintf_eastl_to_string_warning(char * out, unsigned long long int size)
{
const char msg[] = "!!! DO NOT USE eastl::to_string !!!";
const unsigned long long int msg_size = sizeof(msg);
if (out == NULL || size < msg_size)
{
return sizeof(msg);
}
memcpy(out, msg, msg_size);
return msg_size;
}
static inline int Vsnprintf8(char * out, unsigned long long int size, const char *, char *)
{
return snprintf_eastl_to_string_warning(out, size);
}
static inline int Vsnprintf16(char * out, unsigned long long int size, const char *, char *)
{
return snprintf_eastl_to_string_warning(out, size);;
}
static inline int Vsnprintf32(char * out, unsigned long long int size, const char *, char *)
{
return snprintf_eastl_to_string_warning(out, size);
}
};
#endif
|