OpenClonk
C4ScriptStandalone.cpp File Reference
#include "../../include/c4script/c4script.h"
#include "C4Include.h"
#include "c4group/C4Group.h"
#include "lib/C4Random.h"
#include "object/C4DefList.h"
#include "script/C4Aul.h"
#include "script/C4ScriptHost.h"
Include dependency graph for C4ScriptStandalone.cpp:

Go to the source code of this file.

Functions

int c4s_runfile (const char *filename)
 
int c4s_runstring (const char *script)
 
int c4s_checkfile (const char *filename)
 
int c4s_checkstring (const char *script)
 

Function Documentation

◆ c4s_checkfile()

int c4s_checkfile ( const char *  filename)

Definition at line 97 of file C4ScriptStandalone.cpp.

97 { return RunFile(filename, true); }

Referenced by main().

Here is the caller graph for this function:

◆ c4s_checkstring()

int c4s_checkstring ( const char *  script)

Definition at line 98 of file C4ScriptStandalone.cpp.

98 { return RunString(script, true); }

Referenced by main().

Here is the caller graph for this function:

◆ c4s_runfile()

int c4s_runfile ( const char *  filename)

Definition at line 94 of file C4ScriptStandalone.cpp.

94 { return RunFile(filename, false); }

Referenced by main().

Here is the caller graph for this function:

◆ c4s_runstring()

int c4s_runstring ( const char *  script)

Definition at line 95 of file C4ScriptStandalone.cpp.

95 { return RunString(script, false); }

Referenced by main().

Here is the caller graph for this function: