diff options
author | pommicket <pommicket@gmail.com> | 2023-01-01 12:05:48 -0500 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2023-01-01 12:05:48 -0500 |
commit | 8308d6fc53ee339a0b5cac4b9b837179c61efbaa (patch) | |
tree | e4f94a5695e9d5cf035582799738dc2e75c0e779 /ted.h | |
parent | 57834dc0b116a62b806781ddec101bca4cda3abb (diff) |
more reorganizing
Diffstat (limited to 'ted.h')
-rw-r--r-- | ted.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,6 +1,8 @@ #ifndef TED_H_ #define TED_H_ +#include "util.h" +#include "ds.h" #include "lsp.h" #include "base.h" #include "text.h" @@ -585,8 +587,9 @@ typedef struct Ted { char error[512]; char error_shown[512]; // error display in box on screen } Ted; + char *buffer_contents_utf8_alloc(TextBuffer *buffer); -Command command_from_str(char const *str); +Command command_from_str(const char *str); const char *command_to_str(Command command); // Returns string representation of command const char *command_to_str(Command c); |