#ifndef AMALGAM_COMPILER_OPTIONS_H #define AMALGAM_COMPILER_OPTIONS_H typedef void(*amal_compiler_error_callback)(const char *err_msg, int err_msg_len, void *userdata); typedef struct { amal_compiler_error_callback error_callback; void *error_callback_userdata; } amal_compiler_options; #endif