Advertisement
dmesticg

definitions.h

Nov 30th, 2020
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. typedef struct word {
  2. char* str;
  3. int length;
  4. int pos;
  5. struct word *nextWord;
  6. };
  7.  
  8. typedef struct sentence {
  9. void* firstWord;
  10. int lineNum;
  11. int wordTotal;
  12. struct sentence *nextSent;
  13. };
  14.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement