13 lines
225 B
C
13 lines
225 B
C
typedef struct {
|
|
char line[255];
|
|
} line;
|
|
typedef struct {
|
|
line lins[50];
|
|
} buffer;
|
|
|
|
void FlipperSetBuffer(const char* path);
|
|
void FlipperAdd(line);
|
|
void FlipperRemove(line);
|
|
void FlipperInDir();
|
|
void FlipperOutDir();
|