]> git.proxmox.com Git - mirror_frr.git/blobdiff - isisd/dict.h
zebra, lib: fix the ZEBRA_INTERFACE_VRF_UPDATE zapi message
[mirror_frr.git] / isisd / dict.h
index 93edb7d6039b248759dad329f5b2d943d2fa5471..32683c57d58a054fcd057f62ca1d5c46eca66dde 100644 (file)
@@ -14,8 +14,6 @@
  * into proprietary software; there is no requirement for such software to
  * contain a copyright notice related to this source.
  *
- * $Id: dict.h,v 1.3 2005/09/25 12:04:25 hasso Exp $
- * $Name:  $
  */
 
 #ifndef DICT_H
@@ -41,12 +39,12 @@ typedef unsigned long dictcount_t;
 typedef enum { dnode_red, dnode_black } dnode_color_t;
 
 typedef struct dnode_t {
-    struct dnode_t *dict_left;
-    struct dnode_t *dict_right;
-    struct dnode_t *dict_parent;
-    dnode_color_t dict_color;
-    const void *dict_key;
-    void *dict_data;
+       struct dnode_t *dict_left;
+       struct dnode_t *dict_right;
+       struct dnode_t *dict_parent;
+       dnode_color_t dict_color;
+       const void *dict_key;
+       void *dict_data;
 } dnode_t;
 
 typedef int (*dict_comp_t)(const void *, const void *);
@@ -54,21 +52,21 @@ typedef dnode_t *(*dnode_alloc_t)(void *);
 typedef void (*dnode_free_t)(dnode_t *, void *);
 
 typedef struct dict_t {
-    dnode_t dict_nilnode;
-    dictcount_t dict_nodecount;
-    dictcount_t dict_maxcount;
-    dict_comp_t dict_compare;
-    dnode_alloc_t dict_allocnode;
-    dnode_free_t dict_freenode;
-    void *dict_context;
-    int dict_dupes;
+       dnode_t dict_nilnode;
+       dictcount_t dict_nodecount;
+       dictcount_t dict_maxcount;
+       dict_comp_t dict_compare;
+       dnode_alloc_t dict_allocnode;
+       dnode_free_t dict_freenode;
+       void *dict_context;
+       int dict_dupes;
 } dict_t;
 
 typedef void (*dnode_process_t)(dict_t *, dnode_t *, void *);
 
 typedef struct dict_load_t {
-    dict_t *dict_dictptr;
-    dnode_t dict_nilnode;
+       dict_t *dict_dictptr;
+       dnode_t dict_nilnode;
 } dict_load_t;
 
 extern dict_t *dict_create(dictcount_t, dict_comp_t);