X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Fngircd%2Fmatch.c;h=2748a3e4569e3fa5631ba82060a76afa6921f718;hb=77f54693ef258b1fe65ee105fc026dfb2c6257dc;hp=ff5807723a83b24ca542e655184e6a5dc508c731;hpb=b61407713dab7f01ef98b9ee43c7f9e449c3b6f4;p=ngircd.git diff --git a/src/ngircd/match.c b/src/ngircd/match.c index ff580772..2748a3e4 100644 --- a/src/ngircd/match.c +++ b/src/ngircd/match.c @@ -14,7 +14,7 @@ #include "portab.h" -static char UNUSED id[] = "$Id: match.c,v 1.3 2005/03/19 18:43:49 fw Exp $"; +static char UNUSED id[] = "$Id: match.c,v 1.4 2005/07/31 20:13:08 alex Exp $"; #include "imp.h" #include @@ -32,8 +32,8 @@ static char UNUSED id[] = "$Id: match.c,v 1.3 2005/03/19 18:43:49 fw Exp $"; */ -LOCAL int Matche PARAMS(( char *p, char *t )); -LOCAL int Matche_After_Star PARAMS(( char *p, char *t )); +static int Matche PARAMS(( char *p, char *t )); +static int Matche_After_Star PARAMS(( char *p, char *t )); #define MATCH_PATTERN 6 /* bad pattern */ @@ -53,7 +53,7 @@ Match( char *Pattern, char *String ) } /* Match */ -LOCAL int +static int Matche( char *p, char *t ) { register char range_start, range_end; @@ -200,7 +200,7 @@ Matche( char *p, char *t ) } /* Matche */ -LOCAL int +static int Matche_After_Star( char *p, char *t ) { register int nextp, match = 0;