2nd_Sem_Bogachev/2025.04.18/02Ex/array_io.h
2025-04-15 19:51:42 +03:00

9 lines
278 B
C

#ifndef ARRAY_IO_H
#define ARRAY_IO_H
#include "io_status.h"
io_status read_values (double * restrict X, double * restrict Y, const int n, const char * restrict name);
void print_values (const double * restrict X, const double * restrict Y, const int n, const int p);
#endif