File bs/builtins/api/api.h artifact 32a49bf104 part of check-in 8abb611e48
#ifndef EMPATHY_BUILTINS_API_H #define EMPATHY_BUILTINS_API_H #include "support/support.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 ); SetupApiSupport( e ); SetupApiCodeGen( e ); } } #endif