Added return to init

This commit is contained in:
t
2025-01-27 21:14:54 +01:00
parent 74e9b46afc
commit 34dd8cf273
+1 -1
View File
@@ -16,7 +16,7 @@ extern key_value_pair *head;
extern key_value_pair *tail;
// Functions
void init_key_value_pair(const char *key, const char *value);
key_value_pair *init_key_value_pair(const char *key, const char *value);
void free_key_value_pair(key_value_pair **kv);
int add_key_value_pair(key_value_pair *kv);