proper headers

This commit is contained in:
2025-06-03 20:07:24 +02:00
parent 1ddb2fdea0
commit f12754da21
10 changed files with 60 additions and 5 deletions
+17
View File
@@ -0,0 +1,17 @@
#ifndef ARGS_H
#define ARGS_H
struct Parameters {
unsigned long width;
unsigned long height;
char *file_path;
unsigned char start[3];
unsigned char slope[2];
unsigned char var[3];
};
typedef struct Parameters parameters;
parameters parse_args(int argc, char **argv);
#endif