mirror of
https://github.com/theoludwig/libcproject.git
synced 2025-05-21 23:21:15 +02:00
chore: update @since
version
This commit is contained in:
@ -44,7 +44,7 @@ void* array_list_get(struct array_list* list, size_t index);
|
||||
|
||||
/**
|
||||
* @brief Frees the array list.
|
||||
* @since v2.1.0
|
||||
* @since v3.0.0
|
||||
*/
|
||||
void array_list_free(struct array_list* list);
|
||||
|
||||
|
@ -91,7 +91,7 @@ string_t *hash_map_get_keys(struct hash_map *hash_map);
|
||||
|
||||
/**
|
||||
* @brief Frees the hash map.
|
||||
* @since v2.1.0
|
||||
* @since v3.0.0
|
||||
*/
|
||||
void hash_map_free(struct hash_map *hash_map);
|
||||
|
||||
|
@ -64,7 +64,7 @@ void linked_list_reverse_mutate(struct linked_list *list);
|
||||
|
||||
/**
|
||||
* @brief Frees the linked list.
|
||||
* @since v2.1.0
|
||||
* @since v3.0.0
|
||||
*/
|
||||
void linked_list_free(struct linked_list *list);
|
||||
|
||||
|
@ -44,7 +44,7 @@ void *queue_pop(struct queue *queue);
|
||||
|
||||
/**
|
||||
* @brief Frees the queue.
|
||||
* @since v2.1.0
|
||||
* @since v3.0.0
|
||||
*/
|
||||
void queue_free(struct queue *queue);
|
||||
|
||||
|
@ -44,7 +44,7 @@ void *stack_pop(struct stack *stack);
|
||||
|
||||
/**
|
||||
* @brief Frees the stack.
|
||||
* @since v2.1.0
|
||||
* @since v3.0.0
|
||||
*/
|
||||
void stack_free(struct stack *stack);
|
||||
|
||||
|
@ -112,7 +112,7 @@ void terminal_print_hash_map(struct hash_map* hash_map, void (*print_element)(vo
|
||||
*
|
||||
* @param array_list
|
||||
* @param print_element
|
||||
* @since v2.1.0
|
||||
* @since v3.0.0
|
||||
*/
|
||||
void terminal_print_array_list(struct array_list* list, void (*print_element)(void*));
|
||||
|
||||
|
Reference in New Issue
Block a user