mirror of
https://github.com/javalsai/lidm.git
synced 2025-09-01 02:47:59 +02:00
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:
18
include/efield.h
Normal file
18
include/efield.h
Normal 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
|
Reference in New Issue
Block a user