@@ -60,6 +60,10 @@ void _putchar(char character);
60
60
#ifndef MPRINTF_DISABLE_DIRECT_MAPPING
61
61
#define printf __wrap_printf
62
62
#endif
63
+
64
+ #ifndef MPRINTF_DISABLE_MINI_MAPPING
65
+ #define mini_printf __wrap_printf
66
+ #endif
63
67
int __wrap_printf (const char * format , ...);
64
68
65
69
@@ -73,6 +77,10 @@ int __wrap_printf(const char* format, ...);
73
77
#ifndef MPRINTF_DISABLE_DIRECT_MAPPING
74
78
#define sprintf __wrap_sprintf
75
79
#endif
80
+
81
+ #ifndef MPRINTF_DISABLE_MINI_MAPPING
82
+ #define mini_sprintf __wrap_sprintf
83
+ #endif
76
84
int __wrap_sprintf (char * buffer , const char * format , ...);
77
85
78
86
@@ -89,11 +97,17 @@ int __wrap_sprintf(char* buffer, const char* format, ...);
89
97
#ifndef MPRINTF_DISABLE_DIRECT_MAPPING
90
98
#define snprintf __wrap_snprintf
91
99
#endif
100
+ #ifndef MPRINTF_DISABLE_MINI_MAPPING
101
+ #define mini_snprintf __wrap_snprintf
102
+ #endif
92
103
int __wrap_snprintf (char * buffer , size_t count , const char * format , ...);
93
104
94
105
#ifndef MPRINTF_DISABLE_DIRECT_MAPPING
95
106
#define vsnprintf __wrap_vsnprintf
96
107
#endif
108
+ #ifndef MPRINTF_DISABLE_MINI_MAPPING
109
+ #define mini_vsnprintf __wrap_vsnprintf
110
+ #endif
97
111
int __wrap_vsnprintf (char * buffer , size_t count , const char * format , va_list va );
98
112
99
113
/**
@@ -105,6 +119,9 @@ int __wrap_vsnprintf(char* buffer, size_t count, const char* format, va_list va)
105
119
#ifndef MPRINTF_DISABLE_DIRECT_MAPPING
106
120
#define vprintf __wrap_vprintf
107
121
#endif
122
+ #ifndef MPRINTF_DISABLE_MINI_MAPPING
123
+ #define mini_vprintf __wrap_vprintf
124
+ #endif
108
125
int __wrap_vprintf (const char * format , va_list va );
109
126
110
127
0 commit comments