コード例 #1
0
ファイル: Shell.c プロジェクト: authorNari/panda
extern	DB_Func	*
InitShell(void)
{
	DB_Func	*ret;
ENTER_FUNC;
	(void)signal(SIGCHLD, (void *)OnChildExit);

	ret = EnterDB_Function("Shell",Operations,DB_PARSER_SQL,&Core,"# ","\n");
LEAVE_FUNC;
	return	(ret); 
}
コード例 #2
0
ファイル: System.c プロジェクト: authorNari/panda
extern	DB_Func	*
InitSystem(void)
{
	return	(EnterDB_Function("System",Operations,DB_PARSER_NULL,&Core,"/*","*/\t"));
}
コード例 #3
0
ファイル: XMLIO.c プロジェクト: montsuqi/panda
extern DB_Func *InitXMLIO(void) {
  return (EnterDB_Function("XMLIO", Operations, DB_PARSER_NULL, &Core, "", ""));
}