mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05:00
13 lines
263 B
C
13 lines
263 B
C
|
#ifndef __COMPLETION_H
|
||
|
#define __COMPLETION_H
|
||
|
|
||
|
#include "window-items.h"
|
||
|
|
||
|
char *completion_line(WINDOW_REC *window, const char *line, int *pos);
|
||
|
char *auto_completion(const char *line, int *pos);
|
||
|
|
||
|
void completion_init(void);
|
||
|
void completion_deinit(void);
|
||
|
|
||
|
#endif
|