mirror of
https://github.com/profanity-im/profanity.git
synced 2024-12-04 14:46:46 -05:00
12 lines
301 B
C
12 lines
301 B
C
#ifndef PROF_HISTORY_H
|
|
#define PROF_HISTORY_H
|
|
|
|
typedef struct p_history_t *PHistory;
|
|
|
|
PHistory p_history_new(unsigned int size);
|
|
char * p_history_previous(PHistory history, char *item);
|
|
char * p_history_next(PHistory history, char *item);
|
|
void p_history_append(PHistory history, char *item);
|
|
|
|
#endif
|