Libft
Custom implementation of core libc functions with additional utility helpers.
Loading...
Searching...
No Matches
key_value.h
Go to the documentation of this file.
1/* ************************************************************************** */
2/* */
3/* ::: :::::::: */
4/* key_value.h :+: :+: :+: */
5/* +:+ +:+ +:+ */
6/* By: adouieb <adouieb@student.42.fr> +#+ +:+ +#+ */
7/* +#+#+#+#+#+ +#+ */
8/* Created: 2026/06/11 16:24:06 by adouieb #+# #+# */
9/* Updated: 2026/07/06 15:18:23 by adouieb ### ########.fr */
10/* */
11/* ************************************************************************** */
12
13#ifndef KEY_VALUE_H
14# define KEY_VALUE_H
15
16# include "libft.h"
17
27bool is_matching_key(t_key_value *pair, const char *key);
28
29#endif
bool is_matching_key(t_key_value *pair, const char *key)
Tests whether a pair's key equals the given key.
Definition utils.c:15
Key/value pair stored inside a hashmap bucket.
Definition libft.h:192