aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-02-17 05:03:15 +0100
committerCharles <sircharlesaze@gmail.com>2020-02-17 05:03:15 +0100
commit0362f55a094b5ec813d940b66f397abfa13fbe49 (patch)
tree98283bdff3d1a0bb876fc55fa535d60d4aa2a6a9 /README.md
parenteb0678367c5cb09b43423f77d6f1c3063fae9a91 (diff)
downloadlibft-0362f55a094b5ec813d940b66f397abfa13fbe49.tar.gz
libft-0362f55a094b5ec813d940b66f397abfa13fbe49.tar.bz2
libft-0362f55a094b5ec813d940b66f397abfa13fbe49.zip
amend me
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 5e3aeca..aff6c03 100644
--- a/README.md
+++ b/README.md
@@ -84,14 +84,14 @@ Much like the `.gitignore` file, you can put the files/directory to ignore when
| Name | Prototype | Description | Tested |
|------------------|-------------------------------------------------------------------------|-----------------------------------------------------------|--------|
-| ft_htcontent_new | `t_ftht_content *ft_htcontent_new(char *key, void *value)` | create a new key/value pair | [ ] |
+| ft_htcontent_new | `t_ftht_content *ft_htcontent_new(char *key, void *value)` | create a new key/value pair | [x] |
| ft_htdelone | `void ft_htdelone(t_ftht *ht, char *key, void (*del)(t_ftht_content*))` | delete element at `key` | [ ] |
| ft_htdelone_key | `void ft_htdelone_key(t_ftht *ht, char *key)` | delete element at `key` and free `key` | [ ] |
| ft_htdestroy | `void ft_htdestroy(t_ftht *ht, void (*del)(t_ftht_content*))` | destroy `ht` with the `del` functions applied on values | [ ] |
| ft_htdestroy_all | `void ft_htdestroy_all(t_ftht *ht)` | destroy `ht`, free keys and values | [ ] |
| ft_htdestroy_key | `void ft_htdestroy_key(t_ftht *ht)` | destroy `ht`, free keys | [ ] |
| ft_htget | `void *ft_htget(t_ftht *ht, char *key)` | return value at `key` | [ ] |
-| ft_htnew | `t_ftht *ft_htnew(t_ftsize size)` | create a new hash table with a underlying array of `size` | [ ] |
+| ft_htnew | `t_ftht *ft_htnew(t_ftsize size)` | create a new hash table with a underlying array of `size` | [x] |
| ft_htset | `t_ftht_content *ft_htset(t_ftht *ht, char *key, void *value)` | set `key` to value, if element doesn't exist, create it | [ ] |
### io