https://github.com/teuben/nemo
Raw File
Tip revision: 30e2f0291454156c4c138696866bc8e50d3c1c3e authored by Peter Teuben on 13 October 2022, 15:53:54 UTC
Merge branch 'master' of https://github.com/teuben/nemo
Tip revision: 30e2f02
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