private.h 355 B

123456789
  1. /* private.h */
  2. #include "tinyrl/history.h"
  3. /**************************************
  4. * protected interface to tinyrl_history_entry class
  5. ************************************** */
  6. extern tinyrl_history_entry_t *tinyrl_history_entry_new(const char *line,
  7. unsigned index);
  8. extern void tinyrl_history_entry_delete(tinyrl_history_entry_t * instance);