https://github.com/teuben/nemo
Raw File
Tip revision: 2d7397b052daa248781dd446defe1b181172c46f authored by Peter Teuben on 21 December 2017, 10:41:25 UTC
saved filename
Tip revision: 2d7397b
history.h
/*
 *      history.h:
 */

#ifndef _history_h
#define _history_h
#ifndef  HistoryTag
#define HistoryTag "History"            /* used to tag history in input     */
#endif

#ifdef __cplusplus
extern "C" {
#endif	
int    get_history   (stream);
int    put_history   (stream);
int    app_history   (string);
void   reset_history (void);
void   set_headline  (string);
string ask_headline  (void);
string *ask_history  (void);
#ifdef __cplusplus
}
#endif	

#endif /* _history_h */

back to top