eliot-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Eliot-dev] Changes to eliot/dic/hashtable.h [antoine-1]


From: eliot-dev
Subject: [Eliot-dev] Changes to eliot/dic/hashtable.h [antoine-1]
Date: Sun, 23 Oct 2005 13:14:02 -0400

Index: eliot/dic/hashtable.h
diff -u /dev/null eliot/dic/hashtable.h:1.3.2.1
--- /dev/null   Sun Oct 23 17:14:02 2005
+++ eliot/dic/hashtable.h       Sun Oct 23 17:13:56 2005
@@ -0,0 +1,54 @@
+/* Eliot                                                                     */
+/* Copyright (C) 1999  Antoine Fraboulet                                     */
+/*                                                                           */
+/* This file is part of Eliot.                                               */
+/*                                                                           */
+/* Eliot is free software; you can redistribute it and/or modify             */
+/* it under the terms of the GNU General Public License as published by      */
+/* the Free Software Foundation; either version 2 of the License, or         */
+/* (at your option) any later version.                                       */
+/*                                                                           */
+/* Elit is distributed in the hope that it will be useful,                   */
+/* but WITHOUT ANY WARRANTY; without even the implied warranty of            */
+/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the             */
+/* GNU General Public License for more details.                              */
+/*                                                                           */
+/* You should have received a copy of the GNU General Public License         */
+/* along with this program; if not, write to the Free Software               */
+/* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA 
*/
+
+<<<<<<< hashtable.h
+/* $Id: hashtable.h,v 1.3.2.1 2005/10/23 17:13:56 afrab Exp $ */
+=======
+/*
+ * $Id: hashtable.h,v 1.3.2.1 2005/10/23 17:13:56 afrab Exp $   
+ */
+>>>>>>> 1.3
+
+/**
+ *  \file   hashtable.h
+ *  \brief  Simple hashtable type
+ *  \author Antoine Fraboulet
+ *  \date   1999
+ */
+
+#ifndef _HASHTABLE_H
+#define _HASHTABLE_H
+#if defined(__cplusplus)
+extern "C" 
+  {
+#endif 
+
+typedef struct _Hash_table* Hash_table;
+
+Hash_table hash_init(unsigned int);
+int        hash_destroy(Hash_table);
+int        hash_size(Hash_table);
+void*      hash_find(Hash_table,void* key,unsigned keysize);
+int        hash_add (Hash_table,void* key,unsigned keysize,
+                    void* value,unsigned valuesize);
+
+#if defined(__cplusplus)
+  }
+#endif 
+#endif /* _HASHTABLE_H_ */




reply via email to

[Prev in Thread] Current Thread [Next in Thread]