commit 5aeac74c2327b2f9bcc73de15d92c2de79418c56
parent 05174e4ecfd79926e27d5e87bf5df814d8b35cbe
Author: vaplv <vaplv@free.fr>
Date: Thu, 22 Oct 2015 14:41:00 +0200
Add the double dynamic array
Diffstat:
2 files changed, 27 insertions(+), 0 deletions(-)
diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt
@@ -67,6 +67,7 @@ set(RSYS_FILES_INC_API
condition.h
dynamic_array.h
dynamic_array_char.h
+ dynamic_array_double.h
dynamic_array_float.h
dynamic_array_uchar.h
dynamic_array_u32.h
diff --git a/src/dynamic_array_double.h b/src/dynamic_array_double.h
@@ -0,0 +1,26 @@
+/* Copyright (C) 2013-2015 Vincent Forest (vaplv@free.fr)
+ *
+ * The RSys library is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published
+ * by the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * The RSys library 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 Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with the RSys library. If not, see <http://www.gnu.org/licenses/>. */
+
+#ifndef DYNAMIC_ARRRAY_DOUBLE_H
+#define DYNAMIC_ARRRAY_DOUBLE_H
+
+#include "dynamic_array.h"
+
+#define DARRAY_NAME double
+#define DARRAY_DATA double
+#include "dynamic_array.h"
+
+#endif /* DYNAMIC_ARRRAY_DOUBLE_H */
+