File bs/builtins/api/api.h artifact 509532161c part of check-in bd4456308c
#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