test__words.c 200 B

1234567891011121314
  1. # include <stdio.h>
  2. # include "words.h"
  3. # include "word__init.h"
  4. int
  5. main ()
  6. {
  7. // struct Words* words;
  8. struct Word* word ={0};
  9. word__init(word);
  10. // printf("%s", words__get(words)->value);
  11. }