mirror of
https://github.com/irssi/irssi.git
synced 2026-08-15 22:52:15 +02:00
8 lines
251 B
C
8 lines
251 B
C
|
|
#ifndef __CHAT_COMPLETION_H
|
||
|
|
#define __CHAT_COMPLETION_H
|
||
|
|
|
||
|
|
void completion_last_message_add(const char *nick);
|
||
|
|
void completion_last_message_remove(const char *nick);
|
||
|
|
void completion_last_message_rename(const char *oldnick, const char *newnick);
|
||
|
|
|
||
|
|
#endif
|