diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-03-04 12:49:31 +0100 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-03-04 12:49:31 +0100 |
| commit | 2a9133a87109f9430e4827a858ff86596c5f98d5 (patch) | |
| tree | dd345d9bafab86de2b2a9f7e07f83c5b7fc6df43 /src/ht/ft_inter_htkey_cmp.c | |
| parent | 915f1b888cf9c05e4b61321f84ac045eacd8ddd1 (diff) | |
| download | libft-2a9133a87109f9430e4827a858ff86596c5f98d5.tar.gz libft-2a9133a87109f9430e4827a858ff86596c5f98d5.tar.bz2 libft-2a9133a87109f9430e4827a858ff86596c5f98d5.zip | |
Added hash table documentation
Diffstat (limited to 'src/ht/ft_inter_htkey_cmp.c')
| -rw-r--r-- | src/ht/ft_inter_htkey_cmp.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ht/ft_inter_htkey_cmp.c b/src/ht/ft_inter_htkey_cmp.c index be2e52f..397177e 100644 --- a/src/ht/ft_inter_htkey_cmp.c +++ b/src/ht/ft_inter_htkey_cmp.c @@ -13,6 +13,10 @@ #include "libft.h" #include "libft_ht.h" +/* +** Hash table internal function to compare key string in linked list. +*/ + int ft_inter_htkey_cmp(const void *ref_key, const void *content) { if (ref_key == NULL || content == NULL) |
