about summary refs log blame commit diff stats
path: root/prof_history.h
blob: 04c6fdaf526640bd102001d76cd7f768916bd7cc (plain) (tree)
1
2
3
4
5
6
7
8





                                          

                                                        


                                                    
#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