https://github.com/teuben/nemo
Raw File
Tip revision: 4a5f3c599859eaeb62af18a318226e56205a19ef authored by Peter Teuben on 28 January 2021, 04:13:52 UTC
add latest bench
Tip revision: 4a5f3c5
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