1234567891011121314151617181920212223242526272829 |
- /* FILE
- *
- * file: words.cpp
- *
- *
- */
- /*
- */
- # ifndef __LIB_WORDS
- # define __LIB_WORDS
- # include "word.c"
- /* */
- struct Words
- {
- /* */
- struct Word* head;
- /* */
- struct Word* tail;
- /* */
- struct Word* select;
- };
- # endif /* __LIB_WORDS */
|