]> arthur.barton.de Git - ngircd-alex.git/blobdiff - src/ngircd/parse.h
Code cleanup: mostly removing empty lines
[ngircd-alex.git] / src / ngircd / parse.h
index a3f764ece38587c22fca60ed344b74e6e1e1ca55..3acab7d53fbf25d3e8a0b700e94af714ec7d8ac1 100644 (file)
@@ -7,16 +7,16 @@
  * the Free Software Foundation; either version 2 of the License, or
  * (at your option) any later version.
  * Please read the file COPYING, README and AUTHORS for more information.
- *
- * $Id: parse.h,v 1.13 2008/01/13 16:12:49 fw Exp $
- *
- * IRC command parser and validator (header)
  */
 
-
 #ifndef __parse_h__
 #define __parse_h__
 
+/**
+ * @file
+ * IRC command parser and validator (header)
+ */
+
 #include "portab.h"
 
 typedef struct _REQUEST                        /* vgl. RFC 2812, 2.3 */
@@ -30,19 +30,17 @@ typedef struct _REQUEST                     /* vgl. RFC 2812, 2.3 */
 
 typedef struct _COMMAND
 {
-       char *name;                     /* command name */
+       const 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 */
 } COMMAND;
 
-
 GLOBAL bool Parse_Request PARAMS((CONN_ID Idx, char *Request ));
 
 GLOBAL COMMAND *Parse_GetCommandStruct PARAMS(( void ));
 
 #endif
 
-
 /* -eof- */