home · contact · privacy
Replace old with new client, drop redo system needed to build old one.
[plomrogue] / src / client / array_append.h
diff --git a/src/client/array_append.h b/src/client/array_append.h
deleted file mode 100644 (file)
index 72a4446..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-/* src/client/array_append.h
- *
- * This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3
- * or any later version. For details on its copyright, license, and warranties,
- * see the file NOTICE in the root directory of the PlomRogue source package.
- *
- * Small memory management helper.
- */
-
-#ifndef ARRAY_APPEND_H
-#define ARRAY_APPEND_H
-
-#include <stddef.h> /* size_t */
-#include <stdint.h> /* uint32_t */
-
-
-
-/* Append to array pointed to by "ptr_old_array" of "old_n" elements of
- * "region_size" "new region".
- */
-extern void array_append(uint32_t old_n, size_t region_size, void * new_region,
-                         void ** ptr_old_array);
-
-
-
-#endif
-