Template
feat(ext): add builtin C/C++ language modules
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
#ifndef ST_EXT_LANG_CPP_H
|
||||
#define ST_EXT_LANG_CPP_H
|
||||
|
||||
#include "abi.h"
|
||||
|
||||
/*
|
||||
* Builtin C++ language module entry point (called by the builtin module
|
||||
* registry in abi.c).
|
||||
*
|
||||
* Registers over the generic ABI:
|
||||
* - language "cxx" (detect fn + the CXX/CXXFLAGS variables it owns)
|
||||
* - check kind "header" for language "cxx"
|
||||
*
|
||||
* Returns NULL on success. Every compiler-specific string lives in
|
||||
* lang_cpp.c -- nothing here is known to core.
|
||||
*/
|
||||
struct st_error *st_ext_lang_cpp_init(struct st_ext_ctx *ctx);
|
||||
|
||||
#endif /* ST_EXT_LANG_CPP_H */
|
||||
Reference in New Issue
Block a user