Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.37 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <ctype.h>
  3. #include <stdbool.h>
  4.  
  5.  
  6. typedef char KEY_TYPE;
  7. typedef struct
  8.     {
  9.       KEY_TYPE key;
  10.     } DATA;
  11.  
  12. typedef struct nodeTag
  13.     {
  14.       DATA data;
  15.       struct nodeTag* link;
  16.     } NODE;
  17.  
  18.  
  19. //Function Prototypes
  20. NODE* build      (FILE*);
  21. void countvowels (NODE*);
  22. bool isvowel      (char);
  23. void printme     (NODE*);
  24. void searchlist  (NODE*);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement