1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-07-07 18:04:15 -04:00
profanity/prof_history.h

12 lines
277 B
C
Raw Normal View History

2012-04-29 20:09:42 -04:00
#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 * p_history_next(PHistory history);
void p_history_append(PHistory history, char *item);
#endif