cbindgen/tests/expectations/raw_lines.compat.c
Luca Barbato 1a824c04f2 Add support for verbatim content after includes
Let the user add raw C code in the generated header after the include
blocks.

It matches what bindgen provides with the raw_lines option.
2020-04-22 01:50:16 +02:00

21 lines
309 B
C

#ifndef INCLUDE_GUARD_H
#define INCLUDE_GUARD_H
#include <stdarg.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdlib.h>
#define VERSION 1
#ifdef __cplusplus
extern "C" {
#endif // __cplusplus
void root(void);
#ifdef __cplusplus
} // extern "C"
#endif // __cplusplus
#endif /* INCLUDE_GUARD_H */