blob: ab1e9300a5ac163e901d53c27cfbe0413c0ee565 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#ifndef FILE_OPTION_H
#define FILE_OPTION_H
#include <stdbool.h>
#include "buffer.h"
#include "util/macros.h"
#include "util/ptr-array.h"
#include "util/string-view.h"
#include "util/string.h"
typedef enum {
FOPTS_FILENAME,
FOPTS_FILETYPE,
} FileOptionType;
struct EditorState;
void set_file_options(struct EditorState *e, Buffer *buffer) NONNULL_ARGS;
void set_editorconfig_options(Buffer *buffer) NONNULL_ARGS;
void dump_file_options(const PointerArray *file_options, String *buf);
void free_file_options(PointerArray *file_options);
NONNULL_ARGS WARN_UNUSED_RESULT
bool add_file_options (
PointerArray *file_options,
FileOptionType type,
StringView str,
char **strs,
size_t nstrs
);
#endif
|