Skip to content

Commit 944d240

Browse files
sander.hagendoorneyalroz
sander.hagendoorn
authored andcommitted
Regards mpaland#77: MISRA-C++:2008 Rule 18-0-1: The C library shall not be used. ... so, when printf is used in C++, we use the C++-version of the C library headers.
1 parent 2d8d23d commit 944d240

File tree

2 files changed

+14
-5
lines changed

2 files changed

+14
-5
lines changed

src/printf/printf.c

+8
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,13 @@
3636
* THE SOFTWARE.
3737
*/
3838

39+
#ifdef __cplusplus
40+
#include <cstdint>
41+
extern "C" {
42+
#else
3943
#include <stdbool.h>
4044
#include <stdint.h>
45+
#endif
4146

4247
// Define this globally (e.g. gcc -DPRINTF_INCLUDE_CONFIG_H ...) to include the
4348
// printf_config.h header file
@@ -1176,3 +1181,6 @@ int vfctprintf(void (*out)(char character, void* arg), void* arg, const char* fo
11761181
return _vsnprintf(out_wrapped_function, (char*)(uintptr_t)&out_fct_wrap, (size_t)-1, format, va);
11771182
}
11781183

1184+
#ifdef __cplusplus
1185+
} // extern "C"
1186+
#endif

src/printf/printf.h

+6-5
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,13 @@
3939
#ifndef PRINTF_H_
4040
#define PRINTF_H_
4141

42-
#include <stdarg.h>
43-
#include <stddef.h>
44-
45-
4642
#ifdef __cplusplus
43+
# include <cstdarg>
44+
# include <cstddef>
4745
extern "C" {
46+
#else
47+
# include <stdarg.h>
48+
# include <stddef.h>
4849
#endif
4950

5051
#ifdef __GNUC__
@@ -136,7 +137,7 @@ int fctprintf(void (*out)(char character, void* arg), void* arg, const char* for
136137
int vfctprintf(void (*out)(char character, void* arg), void* arg, const char* format, va_list va) ATTR_VPRINTF(3);
137138

138139
#ifdef __cplusplus
139-
}
140+
} // extern "C"
140141
#endif
141142

142143
#if PRINTF_ALIAS_STANDARD_FUNCTION_NAMES

0 commit comments

Comments
 (0)