blob: ad38cc7311e4f8bacccd9ef794e594aceb900100 [file] [log] [blame]
#include <stdarg.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdlib.h>
enum Enum
#ifdef __cplusplus
: uint8_t
#endif // __cplusplus
{
a,
b,
};
#ifndef __cplusplus
typedef uint8_t Enum;
#endif // __cplusplus
struct Struct {
Enum field;
};
#ifdef __cplusplus
extern "C" {
#endif // __cplusplus
extern const Enum STATIC;
void fn(struct Struct arg);
#ifdef __cplusplus
} // extern "C"
#endif // __cplusplus