summaryrefslogtreecommitdiff
path: root/examples/dte/cmdline.h
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2026-01-21 22:52:54 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2026-01-21 22:52:54 +0100
commitdcacc00e3750300617ba6e16eb346713f91a783a (patch)
tree38e2d4fb5ed9d119711d4295c6eda4b014af73fd /examples/dte/cmdline.h
parent58dac10aeb8f5a041c46bddbeaf4c7966a99b998 (diff)
downloadcrep-dcacc00e3750300617ba6e16eb346713f91a783a.tar.gz
Remove testing data
Diffstat (limited to 'examples/dte/cmdline.h')
-rw-r--r--examples/dte/cmdline.h40
1 files changed, 0 insertions, 40 deletions
diff --git a/examples/dte/cmdline.h b/examples/dte/cmdline.h
deleted file mode 100644
index 70cc7a5..0000000
--- a/examples/dte/cmdline.h
+++ /dev/null
@@ -1,40 +0,0 @@
-#ifndef CMDLINE_H
-#define CMDLINE_H
-
-#include <stdbool.h>
-#include <sys/types.h>
-#include "command/run.h"
-#include "history.h"
-#include "util/macros.h"
-#include "util/ptr-array.h"
-#include "util/string-view.h"
-#include "util/string.h"
-
-typedef struct {
- char *orig; // Full cmdline string (backing buffer for `escaped` and `tail`)
- char *parsed; // Result of passing `escaped` through parse_command_arg()
- StringView escaped; // Middle part of `orig` (string to be replaced)
- StringView tail; // Suffix part of `orig` (after `escaped`)
- size_t head_len; // Length of prefix part of `orig` (before `escaped`)
- PointerArray completions; // Array of completion candidates
- size_t idx; // Index of currently selected completion
- bool add_space_after_single_match;
- bool tilde_expanded;
-} CompletionState;
-
-typedef struct {
- String buf;
- size_t pos;
- const HistoryEntry *search_pos;
- char *search_text;
- CompletionState completion;
-} CommandLine;
-
-extern const CommandSet cmd_mode_commands;
-extern const CommandSet search_mode_commands;
-
-void cmdline_set_text(CommandLine *c, const char *text) NONNULL_ARGS;
-void cmdline_clear(CommandLine *c) NONNULL_ARGS;
-void cmdline_free(CommandLine *c) NONNULL_ARGS;
-
-#endif