aboutsummaryrefslogtreecommitdiff
path: root/examples/dte/load-save.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/dte/load-save.h')
-rw-r--r--examples/dte/load-save.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/examples/dte/load-save.h b/examples/dte/load-save.h
deleted file mode 100644
index e8c0a46..0000000
--- a/examples/dte/load-save.h
+++ /dev/null
@@ -1,14 +0,0 @@
1#ifndef LOAD_SAVE_H
2#define LOAD_SAVE_H
3
4#include <stdbool.h>
5#include "buffer.h"
6#include "encoding.h"
7#include "options.h"
8#include "util/macros.h"
9
10bool load_buffer(Buffer *buffer, const char *filename, const GlobalOptions *gopts, bool must_exist) WARN_UNUSED_RESULT;
11bool save_buffer(Buffer *buffer, const char *filename, const Encoding *encoding, bool crlf, bool write_bom, bool hardlinks) WARN_UNUSED_RESULT;
12bool read_blocks(Buffer *buffer, int fd, bool utf8_bom) WARN_UNUSED_RESULT;
13
14#endif