Advertisement
Guest User

Untitled

a guest
Jun 26th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. struct Node {
  2. File* data;
  3. Node* next;
  4. };
  5.  
  6. struct File {
  7. char* filename;
  8. File* parent;
  9. Node* childList;
  10. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement