summaryrefslogtreecommitdiff
path: root/matrix.h
diff options
context:
space:
mode:
Diffstat (limited to 'matrix.h')
-rw-r--r--matrix.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/matrix.h b/matrix.h
index 0b2429e..9711036 100644
--- a/matrix.h
+++ b/matrix.h
@@ -19,6 +19,10 @@ matrix *newMatrix(int rows, int cols);
void freeMatrix(matrix **m);
+void saveMatrix(matrix *m, FILE *fp);
+
+matrix *loadMatrix(FILE *fp);
+
void copyMatrix(matrix *dest, matrix *src);
matrix *cloneMatrix(matrix *m);