blob: 807bc972dc96b023918c8902130eb1cf44db8668 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* Function prototypes.
*/
#ifndef _RATPOISON_COMPLETIONS_H
#define _RATPOISON_COMPLETIONS_H 1
char *completions_complete (rp_completions *c, char *partial, int direction);
rp_completions *completions_new (completion_fn list_fn);
void completions_free (rp_completions *c);
#endif /* ! _RATPOISON_COMPLETIONS_H */
|