ft_nm/inc/ft_file.h
2019-08-10 17:56:26 +03:00

28 lines
No EOL
295 B
C

#ifndef FT_FILE
# define FT_FILE
typedef struct s_file
{
void *file;
uint32_t size;
int fd;
} t_file;
void init_file
(
t_file *file
);
void open_file
(
const char *filename,
t_file *file
);
void close_file
(
t_file *file
);
#endif