https://github.com/teuben/nemo
Raw File
Tip revision: 738a73b7c231dbcaa6218d977354d65263dbd6d2 authored by Peter Teuben on 22 May 2010, 22:47:18 UTC
committed as work I must have done a while back (2007?) to get plplot
Tip revision: 738a73b
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