Blame


1 450a89f7 2021-07-12 op /*
2 450a89f7 2021-07-12 op * Copyright (c) 2021 Omar Polo <op@omarpolo.com>
3 450a89f7 2021-07-12 op *
4 450a89f7 2021-07-12 op * Permission to use, copy, modify, and distribute this software for any
5 450a89f7 2021-07-12 op * purpose with or without fee is hereby granted, provided that the above
6 450a89f7 2021-07-12 op * copyright notice and this permission notice appear in all copies.
7 450a89f7 2021-07-12 op *
8 450a89f7 2021-07-12 op * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 450a89f7 2021-07-12 op * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 450a89f7 2021-07-12 op * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 450a89f7 2021-07-12 op * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 450a89f7 2021-07-12 op * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 450a89f7 2021-07-12 op * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 450a89f7 2021-07-12 op * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 450a89f7 2021-07-12 op */
16 450a89f7 2021-07-12 op
17 450a89f7 2021-07-12 op #ifndef MINIBUFFER_H
18 450a89f7 2021-07-12 op #define MINIBUFFER_H
19 450a89f7 2021-07-12 op
20 450a89f7 2021-07-12 op #include "telescope.h"
21 450a89f7 2021-07-12 op
22 450a89f7 2021-07-12 op void enter_minibuffer(void(*)(void), void(*)(void), void(*)(void),
23 450a89f7 2021-07-12 op struct histhead *);
24 450a89f7 2021-07-12 op void exit_minibuffer(void);
25 450a89f7 2021-07-12 op void yornp(const char *, void (*)(int, struct tab *), struct tab *);
26 450a89f7 2021-07-12 op void completing_read(const char *,
27 450a89f7 2021-07-12 op void (*)(const char *, unsigned int),
28 450a89f7 2021-07-12 op unsigned int);
29 450a89f7 2021-07-12 op
30 450a89f7 2021-07-12 op #endif