]> arthur.barton.de Git - ngircd-alex.git/blobdiff - src/ngircd/parse.h
Updated some more copyright notices, it's 2010 already (part 2)
[ngircd-alex.git] / src / ngircd / parse.h
index b095666601ba7018284055dc8698232de88c9d4c..a3f764ece38587c22fca60ed344b74e6e1e1ca55 100644 (file)
@@ -8,7 +8,7 @@
  * (at your option) any later version.
  * Please read the file COPYING, README and AUTHORS for more information.
  *
- * $Id: parse.h,v 1.11 2005/03/19 18:43:49 fw Exp $
+ * $Id: parse.h,v 1.13 2008/01/13 16:12:49 fw Exp $
  *
  * IRC command parser and validator (header)
  */
@@ -33,8 +33,8 @@ typedef struct _COMMAND
        char *name;                     /* command name */
        bool (*function) PARAMS(( CLIENT *Client, REQUEST *Request ));
        CLIENT_TYPE type;               /* valid client types (bit mask) */
-       long lcount, rcount;    /* number of local and remote calls */
-       long bytes;             /* number of bytes created */
+       long lcount, rcount;            /* number of local and remote calls */
+       long bytes;                     /* number of bytes created */
 } COMMAND;
 
 
@@ -42,7 +42,6 @@ GLOBAL bool Parse_Request PARAMS((CONN_ID Idx, char *Request ));
 
 GLOBAL COMMAND *Parse_GetCommandStruct PARAMS(( void ));
 
-
 #endif