blob: be57fde2506a7d0f1d31142d20455ec5c6cca5a4 [file] [log] [blame]
#include <stdarg.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdlib.h>
#define FOURTY_FOUR 4
enum E
#ifdef __cplusplus
: int8_t
#endif // __cplusplus
{
A = 1,
B = -1,
C = (1 + 2),
D = FOURTY_FOUR,
F = 5,
G = (int8_t)54,
H = (int8_t)false,
};
#ifndef __cplusplus
typedef int8_t E;
#endif // __cplusplus
#ifdef __cplusplus
extern "C" {
#endif // __cplusplus
void root(const E*);
#ifdef __cplusplus
} // extern "C"
#endif // __cplusplus