From dcacc00e3750300617ba6e16eb346713f91a783a Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Wed, 21 Jan 2026 22:52:54 +0100 Subject: Remove testing data --- examples/dte/file-history.h | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 examples/dte/file-history.h (limited to 'examples/dte/file-history.h') diff --git a/examples/dte/file-history.h b/examples/dte/file-history.h deleted file mode 100644 index 0a51891..0000000 --- a/examples/dte/file-history.h +++ /dev/null @@ -1,29 +0,0 @@ -#ifndef FILE_HISTORY_H -#define FILE_HISTORY_H - -#include -#include "util/hashmap.h" -#include "util/macros.h" - -typedef struct FileHistoryEntry { - struct FileHistoryEntry *next; - struct FileHistoryEntry *prev; - char *filename; - unsigned long row; - unsigned long col; -} FileHistoryEntry; - -typedef struct { - char *filename; - HashMap entries; - FileHistoryEntry *first; - FileHistoryEntry *last; -} FileHistory; - -void file_history_add(FileHistory *hist, unsigned long row, unsigned long col, const char *filename); -void file_history_load(FileHistory *hist, char *filename); -void file_history_save(const FileHistory *hist); -bool file_history_find(const FileHistory *hist, const char *filename, unsigned long *row, unsigned long *col) WARN_UNUSED_RESULT; -void file_history_free(FileHistory *history); - -#endif -- cgit v1.2.3