util-vserver-0.30.208
[util-vserver.git] / ensc_vector / vector.hc
diff --git a/ensc_vector/vector.hc b/ensc_vector/vector.hc
new file mode 100644 (file)
index 0000000..13ae3e8
--- /dev/null
@@ -0,0 +1,70 @@
+// $Id: vector.hc,v 1.3 2005/07/03 09:12:31 ensc Exp $    --*- c++ -*--
+
+// Copyright (C) 2002,2003 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
+//  
+// This program 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; version 2 of the License.
+//  
+// This program 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+//  
+
+static inline UNUSED void *
+Vector_begin(struct Vector *vec)
+{
+  return vec->data;
+}
+
+static inline UNUSED void *
+Vector_end(struct Vector *vec)
+{
+  return (char *)(vec->data) + (vec->count * vec->elem_size);
+}
+
+static inline UNUSED void const *
+Vector_begin_const(struct Vector const *vec)
+{
+  return vec->data;
+}
+
+static inline UNUSED void const *
+Vector_end_const(struct Vector const *vec)
+{
+  return (char *)(vec->data) + (vec->count * vec->elem_size);
+}
+
+static inline UNUSED size_t
+Vector_count(struct Vector const *vec)
+{
+  return vec->count;
+}
+
+static inline UNUSED void const *
+Vector_search_const(struct Vector const *vec, void const *key, int (*compar)(const void *, const void *))
+{
+  return Vector_search((struct Vector *)(vec), key, compar);
+}
+
+static inline UNUSED void const *
+Vector_searchSelfOrg_const(struct Vector const *vec, void const *key,
+                          int (*compare)(const void *, const void *),
+                          VectorSelfOrgMethod method)
+{
+  return Vector_searchSelfOrg((struct Vector *)(vec), key, compare, method);
+}
+
+static inline UNUSED void
+Vector_foreach_const(struct Vector const *vec, void (*func)(void const *, void *),
+                    void *data)
+{
+  Vector_foreach((struct Vector *)(vec),
+                (void (*)(void *, void *))(func),
+                data);
+}