school

thing1's amazing school repo
Log | Files | Refs | Submodules | README

dicttest.c (177B)


      1 #include <stdio.h>
      2 
      3 #include "dict.h"
      4 
      5 int main(){
      6 	dict_t *dict = dictalloc();
      7 	dictset(dict, 1, "hello");
      8 	printf("%d:%s\n", dict->id, (char *)dict->data);
      9 	dictfree(dict);
     10 }