memline.pro
上传用户:gddssl
上传日期:2007-01-06
资源大小:1003k
文件大小:1k
源码类别:

编辑器/阅读器

开发平台:

DOS

  1. /* memline.c */
  2. int ml_open __ARGS((void));
  3. void ml_setname __ARGS((void));
  4. void ml_open_files __ARGS((void));
  5. void ml_open_file __ARGS((BUF *buf));
  6. void check_need_swap __ARGS((int newfile));
  7. void ml_close __ARGS((BUF *buf, int del_file));
  8. void ml_close_all __ARGS((int del_file));
  9. void ml_close_notmod __ARGS((void));
  10. void ml_timestamp __ARGS((BUF *buf));
  11. void ml_recover __ARGS((void));
  12. int recover_names __ARGS((char_u **fname, int list, int nr));
  13. void ml_sync_all __ARGS((int check_file, int check_char));
  14. void ml_preserve __ARGS((BUF *buf, int message));
  15. char_u *ml_get __ARGS((linenr_t lnum));
  16. char_u *ml_get_pos __ARGS((FPOS *pos));
  17. char_u *ml_get_curline __ARGS((void));
  18. char_u *ml_get_cursor __ARGS((void));
  19. char_u *ml_get_buf __ARGS((BUF *buf, linenr_t lnum, int will_change));
  20. int ml_line_alloced __ARGS((void));
  21. int ml_append __ARGS((linenr_t lnum, char_u *line, colnr_t len, int newfile));
  22. int ml_replace __ARGS((linenr_t lnum, char_u *line, int copy));
  23. int ml_delete __ARGS((linenr_t lnum, int message));
  24. void ml_setmarked __ARGS((linenr_t lnum));
  25. linenr_t ml_firstmarked __ARGS((void));
  26. int ml_has_mark __ARGS((linenr_t lnum));
  27. void ml_clearmarked __ARGS((void));
  28. char_u *get_file_in_dir __ARGS((char_u *fname, char_u *dname));