コード例 #1
0
ファイル: lparser.c プロジェクト: hongzhidao/yet-another-lua
static void checklimit (FuncState *fs, int v, int l, const char *what) {
  if (v > l) errorlimit(fs, l, what);
}
コード例 #2
0
ファイル: lparser.cpp プロジェクト: swizl/lua
/*static*/ void FuncState::checklimit (/*FuncState *fs,*/ int v, int l, const char *what) {
	if (v > l) errorlimit(l, what);
}