From 0cdb914b5764f692189ed2bc395e3b09ead758e4 Mon Sep 17 00:00:00 2001 From: Ian Jauslin Date: Fri, 27 May 2022 16:09:17 -0400 Subject: savefile and initfile --- src/io.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/io.h (limited to 'src/io.h') diff --git a/src/io.h b/src/io.h new file mode 100644 index 0000000..6a35707 --- /dev/null +++ b/src/io.h @@ -0,0 +1,12 @@ +#ifndef IO_H +#define IO_H + +#include + +// write u to file +int write_u(_Complex double* u, int K1, int K2, FILE* file); + +// read u from file +int read_u(_Complex double* u, int K1, int K2, FILE* file); + +#endif -- cgit v1.2.3-54-g00ecf