jim

Simple, lightweight, modal, vim-inspired text editor
git clone git://git.janpasierb.com/jim.git
Log | Files | Refs | README | LICENSE

appbuf.h (171B)


      1 #ifndef APPBUF_HEADER
      2 #define APPBUF_HEADER
      3 
      4 struct abuf {
      5     char *b;
      6     int len;
      7 };
      8 
      9 void abAppend(struct abuf*, const char*, int);
     10 void abFree(struct abuf*);
     11 
     12 #endif