#ifndef EMPATHY_BUILTINS_API_H
#define EMPATHY_BUILTINS_API_H
#include "codegen/codegen.h"
namespace empathy::builtins
{
extern void SetupApiString( Env& e );
extern void SetupApiCompiler( Env& e );
static inline void SetupBuiltinApi( Env& e )
{
SetupApiString( e );
SetupApiCompiler( e );
SetupApiCodeGen( e );
}
}
#endif