18 lines
407 B
C
18 lines
407 B
C
#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
|