Template
20 lines
548 B
C
20 lines
548 B
C
#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 */
|