Home
last modified time | relevance | path

Searched refs:funcrootp (Results 1 – 2 of 2) sorted by relevance

/dports/irc/undernet-ircu/ircu2.10.12.19/ircd/
H A Dcrule.c653 static int crule_parsefunction(CRuleNodePtr* funcrootp, int* next_tokp, const char** ruleptr) in crule_parsefunction() argument
660 *funcrootp = NULL; in crule_parsefunction()
675 *funcrootp = (CRuleNodePtr) MyMalloc(sizeof(struct CRuleNode)); in crule_parsefunction()
677 fprintf(stderr, "allocating function element at %ld\n", *funcrootp); in crule_parsefunction()
679 (*funcrootp)->funcptr = NULL; /* for freeing aborted trees */ in crule_parsefunction()
681 crule_parsearglist(*funcrootp, next_tokp, ruleptr)) != CR_NOERR) in crule_parsefunction()
685 if ((crule_funclist[funcnum].reqnumargs != (*funcrootp)->numargs) && in crule_parsefunction()
690 (*funcrootp)->funcptr = crule_funclist[funcnum].funcptr; in crule_parsefunction()
/dports/irc/unreal/Unreal3.2.10.7/src/
H A Dcrule.c552 int crule_parsefunction(crule_treeptr *funcrootp, int *next_tokp, char **ruleptr) in crule_parsefunction() argument
559 *funcrootp = NULL; in crule_parsefunction()
574 *funcrootp = (crule_treeptr) MyMalloc(sizeof(crule_treeelem)); in crule_parsefunction()
577 *funcrootp); in crule_parsefunction()
579 (*funcrootp)->funcptr = NULL; /* for freeing aborted trees */ in crule_parsefunction()
580 if ((errcode = crule_parsearglist(*funcrootp, next_tokp, in crule_parsefunction()
586 (*funcrootp)->numargs) in crule_parsefunction()
591 (*funcrootp)->funcptr = crule_funclist[funcnum].funcptr; in crule_parsefunction()