Ian Jauslin
summaryrefslogtreecommitdiff
path: root/src/io.h
blob: 27110b7dcb5d064d253c7ee237bc56af5a282fed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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);

// remove an entry from params string (inplace)
int remove_entry(char* param_str, char* entry);

#endif