apfl/src/globals.h
Laria Carolin Chabowski 0361000e7c apflc: Use an apfl_ctx for compilation
We'll soon need the full apfl_ctx, where we previously only needed the
gc. apflc was the only place manually constructing a struct gc without
an apfl_ctx, so lets change that.
2023-11-23 21:03:40 +01:00

16 lines
172 B
C

#ifndef APFL_GLOBALS_H
#define APFL_GLOBALS_H
#ifdef __cplusplus
extern "C" {
#endif
#include "apfl.h"
void apfl_globals(apfl_ctx);
#ifdef __cplusplus
}
#endif
#endif