mirror of
https://github.com/ChaiScript/ChaiScript.git
synced 2025-12-07 01:06:54 +08:00
12 lines
168 B
C++
12 lines
168 B
C++
|
|
#ifndef CHAISCRIPT_STDLIB
|
|
#define CHAISCRIPT_STDLIB
|
|
|
|
namespace chaiscript {
|
|
class Module;
|
|
}
|
|
|
|
std::shared_ptr<chaiscript::Module> create_chaiscript_stdlib();
|
|
|
|
#endif
|