mirror of
https://github.com/irssi/irssi.git
synced 2026-08-16 15:12:11 +02:00
13 lines
325 B
C
13 lines
325 B
C
|
|
#ifndef __COMPLETION_H
|
||
|
|
#define __COMPLETION_H
|
||
|
|
|
||
|
|
#include "window-items.h"
|
||
|
|
|
||
|
|
int completion_msgtoyou(SERVER_REC *server, const char *msg);
|
||
|
|
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
|