Comment changes.
authorPekka Riikonen <priikone@silcnet.org>
Mon, 23 Oct 2006 16:39:49 +0000 (16:39 +0000)
committerPekka Riikonen <priikone@silcnet.org>
Mon, 23 Oct 2006 16:39:49 +0000 (16:39 +0000)
lib/silcutil/silctypes.h

index d64c1a13d46b6c53e989a9bc172a7fdb5cdf75be..4f3eea68933b45716c265edc5af08973508f8cff 100644 (file)
@@ -4,7 +4,7 @@
 
   Author: Pekka Riikonen <priikone@silcnet.org>
 
-  Copyright (C) 2002 - 2004 Pekka Riikonen
+  Copyright (C) 2002 - 2006 Pekka Riikonen
 
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
 #endif
 /***/
 
+/****d* silcutil/SILCTypes/SilcBool
+ *
+ * NAME
+ *
+ *    typedef unigned char SilcBool;
+ *
+ * DESCRIPTION
+ *
+ *    Boolean value, and is always 8-bits.  Represents value 0 or 1.
+ *
+ ***/
+typedef unsigned char SilcBool;
+
 /****d* silcutil/SILCTypes/bool
  *
  * NAME
 #endif
 /***/
 
-/****d* silcutil/SILCTypes/SilcBool
- *
- * NAME
- *
- *    typedef unigned char SilcBool;
- *
- * DESCRIPTION
- *
- *    Boolean value, and is always 8-bits.  Represents value 0 or 1.
- *
- ***/
-typedef unsigned char SilcBool;
-
 #define silc_offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
 
 #if SILC_SIZEOF_SHORT > 2