Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
bugfix
[simgrid.git] / src / xbt / dict_private.h
index 67e5a5c..c0117b5 100644 (file)
@@ -3,11 +3,10 @@
 /* dict_elm - elements of generic dictionnaries                             */
 /* This file is not to be loaded from anywhere but dict.c                   */
 
-/* Authors: Martin Quinson                                                  */
-/* Copyright (C) 2003,2004 Martin Quinson.                                  */
+/* Copyright (c) 2003, 2004 Martin Quinson. All rights reserved.            */
 
 /* This program is free software; you can redistribute it and/or modify it
  under the terms of the license (GNU LGPL) which comes with this package. */
* under the terms of the license (GNU LGPL) which comes with this package. */
 
 #ifndef _XBT_DICT_ELM_T_
 #define _XBT_DICT_ELM_T_
@@ -23,6 +22,7 @@ typedef struct xbt_dictelm_ {
   char           *key;
   int             key_len;
   int             offset; /* offset on the key */
+  int             internal; /* true if it's only an internal node */
   void           *content;
   void_f_pvoid_t *free_f; /*pointer to the function to call to free this ctn*/