Removed find_key_value_pair -> currently redundant - removed unnecessary parameter for init
This commit is contained in:
@@ -16,12 +16,10 @@ extern key_value_pair *head;
|
|||||||
extern key_value_pair *tail;
|
extern key_value_pair *tail;
|
||||||
|
|
||||||
// Functions
|
// Functions
|
||||||
void init_key_value_pair(key_value_pair *kv, char *key, char *value);
|
void init_key_value_pair(char *key, char *value);
|
||||||
void free_key_value_pair(key_value_pair **kv);
|
void free_key_value_pair(key_value_pair **kv);
|
||||||
|
|
||||||
int add_key_value_pair(key_value_pair *kv);
|
int add_key_value_pair(key_value_pair *kv);
|
||||||
void remove_key_value_pair(key_value_pair *kv);
|
void remove_key_value_pair(key_value_pair *kv);
|
||||||
void find_key_value_pair(char *key);
|
|
||||||
char *to_string_key_value_pair(key_value_pair *kv);
|
|
||||||
|
|
||||||
#endif //KEY_VALUE_PAIR_H
|
#endif //KEY_VALUE_PAIR_H
|
||||||
|
|||||||
Reference in New Issue
Block a user