about summary refs log tree commit diff stats
path: root/prof_history.h
blob: 04c6fdaf526640bd102001d76cd7f768916bd7cc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#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