blob: 0a2efaa1cebba4fe3ea51ac7171e2d84521b23d1 [file] [log] [blame]
#ifndef helpers_h
#define helpers_h
#ifdef _WIN32
#define strdup _strdup
#endif
#include <yaml.h>
#define DECLARE_YUNION_FUNC(name) \
__typeof__(((yaml_event_t *)0)->data.name) *\
event_##name(yaml_event_t *event);
DECLARE_YUNION_FUNC(scalar)
DECLARE_YUNION_FUNC(alias)
DECLARE_YUNION_FUNC(mapping_start)
DECLARE_YUNION_FUNC(sequence_start)
void set_output_handler(yaml_emitter_t *e);
#endif