From 43cf4cd6781986091c55dab5d194785b67a5852f Mon Sep 17 00:00:00 2001 From: cherierm Date: Wed, 4 Jun 2008 17:48:52 +0000 Subject: [PATCH] not needed git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@5537 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- tools/tesh2/include/dictionary.h | 50 -------------------------------- 1 file changed, 50 deletions(-) delete mode 100644 tools/tesh2/include/dictionary.h diff --git a/tools/tesh2/include/dictionary.h b/tools/tesh2/include/dictionary.h deleted file mode 100644 index fa8efb15a3..0000000000 --- a/tools/tesh2/include/dictionary.h +++ /dev/null @@ -1,50 +0,0 @@ -#ifndef __dictionary_H -#define __dictionary_H - -#include - -#ifdef __cplusplus -extern "C" { -#endif - -#ifndef __FN_FINALIZE_T_DEFINED -typedef int (*fn_finalize_t)(void**); -#define __FN_FINALIZE_T_DEFINED -#endif - -typedef struct s_dictionary -{ - htable_t htable; -}s_dictionary_t,* dictionary_t; - - -dictionary_t -dictionary_new(fn_finalize_t fn_finalize); - -int -dictionary_set(dictionary_t dictionary,const char* key, const void* val); - -void* -dictionary_get(dictionary_t dictionary,const char* key); - -int -dictionary_free(dictionary_t* dictionaryptr); - -int -dictionary_clear(dictionary_t dictionary); - -int -dictionary_get_size(dictionary_t dictionary); - -int -dictionary_is_empty(dictionary_t dictionary); - -void* -dictionary_remove(dictionary_t dictionary,const char* key); - -#ifdef __cplusplus -} -#endif - - -#endif /* !__dictionary_H */ -- 2.20.1