//
// Created by ricar on 16.12.2022.
//
#ifndef IMAGE_ROTATION_FILE_H
#define IMAGE_ROTATION_FILE_H
#include <stdbool.h>
#include <stdio.h>
// This function attempts to open a file with the given name and mode.
bool check_file_opened(FILE **file,const char *name, const char *mode);
// This function closes a file that was previously opened with check_file_opened().
bool check_file_closed(FILE **file);
#endif //IMAGE_ROTATION_FILE_H
-
Самбрано Браво Рикардо Хосе authored
Update solution/include/bmp.h, solution/include/file.h, solution/include/image.h, solution/include/rotation.h, solution/src/bmp.c, solution/src/file.c, solution/src/image.c, solution/src/rotation.c, solution/src/main.c files
0e2cc078