Nstrophy/src/io.h

13 lines
216 B
C
Raw Normal View History

2022-05-27 20:09:17 +00:00
#ifndef IO_H
#define IO_H
#include <stdio.h>
// 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