diff options
author | standenboy <standenboy@seacrossedlovers.xyz> | 2024-04-25 08:54:44 +0100 |
---|---|---|
committer | standenboy <standenboy@seacrossedlovers.xyz> | 2024-04-25 08:54:44 +0100 |
commit | 2e239a4ed2265f7c7dc2aabedfdb7d7b011704cb (patch) | |
tree | acfef7d709d4e09cbc05a368b5a30047147c69cf /comp/cw/code/ads/dict/dicttest.c | |
parent | b1c4f3c2d2a567601d2cb6aee65bb0d81320dfba (diff) |
dll wasn't working and prob wasn't needed so i removed it
Diffstat (limited to 'comp/cw/code/ads/dict/dicttest.c')
-rw-r--r-- | comp/cw/code/ads/dict/dicttest.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/comp/cw/code/ads/dict/dicttest.c b/comp/cw/code/ads/dict/dicttest.c new file mode 100644 index 0000000..4a20870 --- /dev/null +++ b/comp/cw/code/ads/dict/dicttest.c @@ -0,0 +1,10 @@ +#include <stdio.h> + +#include "dict.h" + +int main(){ + dict_t *dict = dictalloc(); + dictset(dict, 1, "hello"); + printf("%d:%s\n", dict->id, (char *)dict->data); + dictfree(dict); +} |