diff options
| author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2023-11-13 05:30:27 +0100 |
|---|---|---|
| committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2023-11-13 05:30:27 +0100 |
| commit | 0e951a0f8831ac2885fe64531438eb28202f6e53 (patch) | |
| tree | ef9e76c8646c1225db2e542bef775325d9db8a39 /list.h | |
| parent | ab52e851c95ebe2fa1ee4c2a5dcbc826bbb41769 (diff) | |
| download | crep-0e951a0f8831ac2885fe64531438eb28202f6e53.tar.gz | |
Move to Chromium styleguide
Diffstat (limited to 'list.h')
| -rw-r--r-- | list.h | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -2,13 +2,13 @@ #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); -void list_files_recursively(char *base_path, Node **head); -void free_file_list(Node *head); -int size_of_file_list(Node *head); +void add_file_path(Node** head, char* file_path); +void list_files_recursively(char* base_path, Node** head); +void free_file_list(Node* head); +int size_of_file_list(Node* head); #endif |
