mirror of
https://github.com/ZoiteChat/zoitechat.git
synced 2026-03-17 03:00:19 +00:00
add xchat r1489
This commit is contained in:
18
src/common/history.h
Normal file
18
src/common/history.h
Normal file
@@ -0,0 +1,18 @@
|
||||
#ifndef XCHAT_HISTORY_H
|
||||
#define XCHAT_HISTORY_H
|
||||
|
||||
#define HISTORY_SIZE 100
|
||||
|
||||
struct history
|
||||
{
|
||||
char *lines[HISTORY_SIZE];
|
||||
int pos;
|
||||
int realpos;
|
||||
};
|
||||
|
||||
void history_add (struct history *his, char *text);
|
||||
void history_free (struct history *his);
|
||||
char *history_up (struct history *his, char *current_text);
|
||||
char *history_down (struct history *his);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user