aboutsummaryrefslogtreecommitdiff
path: root/include/compiler_options.h
blob: 185437271030ede471927d649b80e470403f6383 (plain)
1
2
3
4
5
6
7
8
9
10
11
#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