1
0
mirror of https://gittea.dev/nova/th.git synced 2025-10-22 02:40:15 -04:00

linked list to keep track of past directory indexes

This commit is contained in:
nova
2025-08-18 21:07:18 +02:00
parent 55cd4077b1
commit f25768d522
5 changed files with 57 additions and 1 deletions

View File

@@ -91,4 +91,10 @@ typedef struct Yank {
char **list;
unsigned long count;
} yank;
typedef struct Linked_dir {
char *path;
unsigned long selected_file_current;
struct Linked_dir *next;
} linked_dir;
#endif