Explorar el Código

* Comments

svn: 1884
Bryan Drewery hace 21 años
padre
commit
6021371ec3
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  1. 3 0
      src/match.c

+ 3 - 0
src/match.c

@@ -36,6 +36,7 @@
 #define MATCH (match+sofar)
 #define PERMATCH (match+saved+sofar)
 
+/* binds matching */
 int _wild_match_per(register unsigned char *m, register unsigned char *n)
 {
   /* null strings should never match */
@@ -131,6 +132,8 @@ int _wild_match_per(register unsigned char *m, register unsigned char *n)
   return (*m) ? NOMATCH : PERMATCH;     /* End of both = match */
 }
 
+
+/* general/host matching */
 int _wild_match(register unsigned char *m, register unsigned char *n)
 {
   unsigned char *ma = m, *na = n;