Started work on bash style history
This commit is contained in:
11
prof_history.h
Normal file
11
prof_history.h
Normal file
@@ -0,0 +1,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 * p_history_next(PHistory history);
|
||||
void p_history_append(PHistory history, char *item);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user