This source file includes following definitions.
- decimal_point_char
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 #include <config.h>
18
19 #include <string.h>
20
21 #include "printf-parse.h"
22
23 #define VASNPRINTF c_vasnprintf
24 #define FCHAR_T char
25 #define DCHAR_T char
26 #define DIRECTIVE char_directive
27 #define DIRECTIVES char_directives
28 #define PRINTF_PARSE printf_parse
29 #define DCHAR_CPY memcpy
30 #define DCHAR_SET memset
31 #define DCHAR_IS_TCHAR 1
32 #define TCHAR_T char
33
34 #define NEED_PRINTF_DOUBLE 1
35 #define NEED_PRINTF_LONG_DOUBLE 1
36 #define decimal_point_char_defined 1
37 static char
38 decimal_point_char (void)
39 {
40 return '.';
41 }
42
43 #include "vasnprintf.c"