verder opschonen

This commit is contained in:
Dennis Boekholtz
2024-04-05 21:25:41 +02:00
parent d69605b3a6
commit ee4f92b225
2 changed files with 53 additions and 64 deletions

View File

@@ -6,10 +6,10 @@
// interface for a buffer with chars's
// one element in the buffer
struct FIFOBuffChar_element_s {
char value;
void* nextEl;
};
typedef struct FIFOBuffChar_element_s {
char character; // "char character" replaced "int value" because the elements are going to be characters
void* nextElement;
} FIFOBuffChar_element_t;
// defines all vars for the buffer to operate
typedef struct FIFOBuffChar_s {