diff options
Diffstat (limited to 'list.h')
| -rw-r--r-- | list.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2,8 +2,8 @@ #define LIST_H typedef struct node { - char *file_path; - struct node *next; + char *file_path; + struct node *next; } Node; void add_file_path(Node **head, char *file_path); |
