summaryrefslogtreecommitdiffstats
path: root/lib/list_util.h
diff options
context:
space:
mode:
authorChris Hall <GMCH@hestia.halldom.com>2010-04-06 02:10:30 +0100
committerChris Hall <GMCH@hestia.halldom.com>2010-04-06 02:10:30 +0100
commit8fea5ca7104c0d95108947661a4991b61b2ee06e (patch)
tree7ad44a658a61d4a8dfb43ca5b6122c5626f68ea0 /lib/list_util.h
parentc933cf7233f51f677ab01689f175ceb3dc5361f6 (diff)
downloadquagga-8fea5ca7104c0d95108947661a4991b61b2ee06e.tar.bz2
quagga-8fea5ca7104c0d95108947661a4991b61b2ee06e.tar.xz
First beta release
Various bug fixes and improvements. Running with a fair amount of debug/assert code, which must be removed at some date.
Diffstat (limited to 'lib/list_util.h')
-rw-r--r--lib/list_util.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/list_util.h b/lib/list_util.h
index b658c7ce..10ba8b0c 100644
--- a/lib/list_util.h
+++ b/lib/list_util.h
@@ -87,7 +87,7 @@
* struct item
* {
* ....
- * struct list_pair(struct item*) foo_list ;
+ * struct dl_list_pair(struct item*) foo_list ;
* ....
* } ;
*
@@ -99,15 +99,15 @@
*
* A double base may be declared:
*
- * struct base_pair(struct item*) foo_base ;
+ * struct dl_base_pair(struct item*) foo_base ;
*
* Various ways to construct structures or structure types:
*
- * typedef struct list_pair(struct foo*) foo_list ;
+ * typedef struct dl_list_pair(struct foo*) foo_list ;
*
- * struct foo_list list_pair(struct foo*) ;
+ * struct foo_list dl_list_pair(struct foo*) ;
*
- * struct foo_base base_pair(struct foo*) ;
+ * struct foo_base dl_base_pair(struct foo*) ;
*/
#define dl_list_pair(ptr_t) { ptr_t next ; ptr_t prev ; }