示例#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, "", ""));
}