Advertisement
notABoyNamedSue

Start.h

Sep 12th, 2016
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. #ifndef START_H
  2. #define START_H
  3. #include "linkedlist.h"
  4.  
  5. typedef struct tempHold *TempHold;
  6.  
  7. TempHold createT(int size);
  8.  
  9. void insertTemp(TempHold tt, char *newData);
  10.  
  11.  
  12. void read(LinkedList LL, TempHold tt, char* filename, int lineL);
  13. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement