17 lines
175 B
C
17 lines
175 B
C
|
|
#ifndef APFL_BUILTINS_H
|
||
|
|
#define APFL_BUILTINS_H
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#include "apfl.h"
|
||
|
|
|
||
|
|
void apfl_builtins(apfl_ctx);
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif
|