Beispiel #1
0
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); 
}
Beispiel #2
0
extern	DB_Func	*
InitSystem(void)
{
	return	(EnterDB_Function("System",Operations,DB_PARSER_NULL,&Core,"/*","*/\t"));
}
Beispiel #3
0
extern DB_Func *InitXMLIO(void) {
  return (EnterDB_Function("XMLIO", Operations, DB_PARSER_NULL, &Core, "", ""));
}