summaryrefslogtreecommitdiff
path: root/list.h
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2023-11-13 04:44:12 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2023-11-13 04:44:12 +0100
commitab52e851c95ebe2fa1ee4c2a5dcbc826bbb41769 (patch)
treef35d388ba56304a1054399a27d03acbafa2d2828 /list.h
parentbfdf2f591ed5d767df60c5672b9d1ceb605764eb (diff)
downloadcrep-ab52e851c95ebe2fa1ee4c2a5dcbc826bbb41769.tar.gz
Move to tabs
Diffstat (limited to 'list.h')
-rw-r--r--list.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/list.h b/list.h
index e494cba..c958836 100644
--- a/list.h
+++ b/list.h
@@ -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);