Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Ирина Усольцева
assignment-image-rotation
Commits
5d9c89a7
Commit
5d9c89a7
authored
2 years ago
by
Ирина Усольцева
Browse files
Options
Download
Email Patches
Plain Diff
Delete io.h
parent
44f3b78a
Pipeline
#39501
canceled with stages
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
21 deletions
+0
-21
solution/include/io.h
solution/include/io.h
+0
-21
No files found.
solution/include/io.h
deleted
100644 → 0
View file @
44f3b78a
#ifndef ASSIGNMENT_IMAGE_ROTATION_IO_H
#define ASSIGNMENT_IMAGE_ROTATION_IO_H
#include <stdbool.h>
#include <stdio.h>
enum
io_return_code
{
OPEN_SUCCESS
=
0
,
CLOSE_SUCCESS
,
OPEN_FAILED
,
CLOSE_FAILED
,
FILE_CLOSED
,
};
extern
const
char
*
io_return_code_string
[];
enum
io_return_code
file_open
(
const
char
*
file_name
,
FILE
**
file
,
const
char
*
mode
);
enum
io_return_code
file_close
(
FILE
*
file
);
#endif //ASSIGNMENT_IMAGE_ROTATION_IO_H
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help