all: at this point just read readme 😭

spaghetti code
equivalent spaghetti readme
spaghetti commit (wait no, this is actually descriptive)
This commit is contained in:
2024-07-13 01:30:47 +02:00
parent 08debefeb7
commit 6b2d76c9b8
16 changed files with 954 additions and 39 deletions

18
include/efield.h Normal file
View File

@@ -0,0 +1,18 @@
#ifndef _EFIELDH_
#define _EFIELDH_
#include <stdbool.h>
#include <sys/types.h>
struct editable_field {
u_char length;
u_char pos;
char content[255];
};
struct editable_field field_new(char*);
void field_trim(struct editable_field*, u_char);
void field_update(struct editable_field*, char*);
bool field_seek(struct editable_field*, char);
#endif