rc

[fork] interactive rc shell
git clone https://hhvn.uk/rc
git clone git://hhvn.uk/rc
Log | Files | Refs | README | LICENSE

edit.h (236B)


      1 extern bool editing;
      2 
      3 extern void *edit_begin(int fd);
      4 
      5 extern char *edit_alloc(void *, size_t *);
      6 extern void edit_free(void *);
      7 
      8 extern void edit_prompt(void *, char *);
      9 
     10 extern void edit_end(void *);
     11 
     12 extern void edit_reset(void *);