verder opschonen
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user