Blame


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