words.h 262 B

1234567891011121314151617181920212223242526272829
  1. /* FILE
  2. *
  3. * file: words.cpp
  4. *
  5. *
  6. */
  7. /*
  8. */
  9. # ifndef __LIB_WORDS
  10. # define __LIB_WORDS
  11. # include "word.c"
  12. /* */
  13. struct Words
  14. {
  15. /* */
  16. struct Word* head;
  17. /* */
  18. struct Word* tail;
  19. /* */
  20. struct Word* select;
  21. };
  22. # endif /* __LIB_WORDS */