home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / util / edit / vim / src / proto / memline.pro < prev    next >
Encoding:
Text File  |  1994-08-13  |  959 b   |  22 lines

  1. /* memline.c */
  2. int ml_open __PARMS((void));
  3. void ml_open_files __PARMS((void));
  4. void ml_close __PARMS((struct buffer *buf));
  5. void ml_close_all __PARMS((void));
  6. void ml_timestamp __PARMS((struct buffer *buf));
  7. void ml_recover __PARMS((void));
  8. void ml_sync_all __PARMS((int check_file));
  9. void ml_preserve __PARMS((struct buffer *buf, int message));
  10. unsigned char *ml_get __PARMS((long lnum));
  11. unsigned char *ml_get_pos __PARMS((struct fpos *pos));
  12. unsigned char *ml_get_cursor __PARMS((void));
  13. unsigned char *ml_get_buf __PARMS((struct buffer *buf, long lnum, int will_change));
  14. int ml_line_alloced __PARMS((void));
  15. int ml_append __PARMS((long lnum, unsigned char *line, unsigned int len, int newfile));
  16. int ml_replace __PARMS((long lnum, unsigned char *line, int copy));
  17. int ml_delete __PARMS((long lnum));
  18. void ml_setmarked __PARMS((long lnum));
  19. long ml_firstmarked __PARMS((void));
  20. int ml_has_mark __PARMS((long lnum));
  21. void ml_clearmarked __PARMS((void));
  22.