aboutsummaryrefslogtreecommitdiff
path: root/include/gensvm_copy.h
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2016-05-16 18:47:09 +0200
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2016-05-16 18:47:09 +0200
commit044dc5a93c33d7aa4c9c98a626890c16446a56fc (patch)
tree23cc17a595d36a35ad9cb50e3ab18c2956b5f65c /include/gensvm_copy.h
parentMove includes to header (diff)
downloadgensvm-044dc5a93c33d7aa4c9c98a626890c16446a56fc.tar.gz
gensvm-044dc5a93c33d7aa4c9c98a626890c16446a56fc.zip
major refactor of the code
Diffstat (limited to 'include/gensvm_copy.h')
-rw-r--r--include/gensvm_copy.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/include/gensvm_copy.h b/include/gensvm_copy.h
new file mode 100644
index 0000000..bdf6eec
--- /dev/null
+++ b/include/gensvm_copy.h
@@ -0,0 +1,18 @@
+/**
+ * @file gensvm_copy.h
+ * @author Gertjan van den Burg
+ * @date May, 2016
+ * @brief Header file for gensvm_copy.c
+ *
+ */
+
+#ifndef GENSVM_COPY_H
+#define GENSVM_COPY_H
+
+// includes
+#include "gensvm_base.h"
+
+// function declarations
+void gensvm_copy_model(struct GenModel *from, struct GenModel *to);
+
+#endif