Go to the source code of this file.
Definition at line 128 of file wildmat.c.
References TRUE.
Referenced by NewsgroupFilter::matches().
00129 { 00130 #ifdef OPTIMIZE_JUST_STAR 00131 if (p[0] == '*' && p[1] == '\0') 00132 return TRUE; 00133 #endif /* OPTIMIZE_JUST_STAR */ 00134 return DoMatch(text, p) == TRUE; 00135 }