private.h 388 B

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