mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2026-04-05 17:56:34 +00:00
15 lines
No EOL
529 B
C
15 lines
No EOL
529 B
C
#ifndef STRING_LINKED_LIST_H
|
|
#define STRING_LINKED_LIST_H
|
|
|
|
struct StringLinkedList {
|
|
char* string;
|
|
struct StringLinkedList* next;
|
|
};
|
|
|
|
void string_linked_list_append(struct StringLinkedList* node, const char* string);
|
|
bool string_linked_list_contains(struct StringLinkedList* node, const char* string);
|
|
bool string_linked_list_mismatch(struct StringLinkedList* a, struct StringLinkedList* b);
|
|
int string_linked_list_count(struct StringLinkedList* node);
|
|
void string_linked_list_free(struct StringLinkedList* node);
|
|
|
|
#endif |