diff options
author | Chris Hall <GMCH@hestia.halldom.com> | 2010-04-06 02:10:30 +0100 |
---|---|---|
committer | Chris Hall <GMCH@hestia.halldom.com> | 2010-04-06 02:10:30 +0100 |
commit | 8fea5ca7104c0d95108947661a4991b61b2ee06e (patch) | |
tree | 7ad44a658a61d4a8dfb43ca5b6122c5626f68ea0 /lib/list_util.h | |
parent | c933cf7233f51f677ab01689f175ceb3dc5361f6 (diff) | |
download | quagga-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.h | 10 |
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 ; } |