added copytron filemanager and working on flipper

This commit is contained in:
2025-03-25 07:34:15 -07:00
parent 51574fbc0b
commit 2a13827e87
11 changed files with 135 additions and 1 deletions

17
source/copytron.h Normal file
View File

@@ -0,0 +1,17 @@
#ifndef COPYTRON_H
#define COPYTRON_H
typedef struct {
char path[255];
int file_path_len;
} copytron_file;
typedef struct {
copytron_file files[100];
int file_count;
}copytron_flips;
copytron_file copytronFileCreate();
copytron_flips copytronFlipsCreate();
int copytronAdd(copytron_flips* flips, copytron_file* file);
int copytronRemove(copytron_flips* flips, copytron_file* file);
#endif