2nd_Sem_Bogachev/2025.05.23/04Ex/io_node.h
2025-05-18 23:08:57 +03:00

12 lines
246 B
C

#ifndef IO_NODE_H
#define IO_NODE_H
#include "node.h"
#include "status.h"
int get_length (node * head);
void delete_list (node * head);
io_status read_list (node **list, const char *filename);
void print_list (node *head, const int p);
#endif