blob: 6ae0663dfb5e58f4cbdc563f8d947870b1a0fb6a [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
typedef struct {
Enum field;
} Struct;
#ifdef __cplusplus
extern "C" {
#endif // __cplusplus
extern const Enum STATIC;
void fn(Struct arg);
#ifdef __cplusplus
} // extern "C"
#endif // __cplusplus