diff options
| author | Louis Burda <quent.burda@gmail.com> | 2022-01-24 17:50:44 +0100 |
|---|---|---|
| committer | Louis Burda <quent.burda@gmail.com> | 2022-01-24 17:50:44 +0100 |
| commit | 57609d2ef265bc6b2ae2d5b04605d57150971ebe (patch) | |
| tree | e3fbffacf462641b49cb39bf2d7713dc70ca0fc8 /src/history.h | |
| parent | b70423c2ece6b268a47c32950faeda344c7004a7 (diff) | |
| download | tmus-57609d2ef265bc6b2ae2d5b04605d57150971ebe.tar.gz tmus-57609d2ef265bc6b2ae2d5b04605d57150971ebe.zip | |
Added tag search mode to select quickly
Diffstat (limited to 'src/history.h')
| -rw-r--r-- | src/history.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/history.h b/src/history.h index f7d2a42..1cc4dbe 100644 --- a/src/history.h +++ b/src/history.h @@ -29,7 +29,9 @@ void history_next(struct history *history); void history_add(struct history *history, struct inputln *line); -struct inputln *inputln_init(void); +struct inputln *inputln_alloc(void); +void inputln_init(struct inputln *ln); +void inputln_resize(struct inputln *ln, size_t size); void inputln_free(struct inputln *ln); void inputln_left(struct inputln *line); |
