home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / amiga / vim46src.lha / vim-4.6 / src / proto / buffer.pro < prev    next >
Encoding:
Text File  |  1997-03-12  |  1.8 KB  |  35 lines

  1. /* buffer.c */
  2. int open_buffer __PARMS((void));
  3. int buf_valid __PARMS((BUF *buf));
  4. void close_buffer __PARMS((WIN *win, BUF *buf, int free_buf, int del_buf));
  5. void buf_clear __PARMS((BUF *buf));
  6. void buf_freeall __PARMS((BUF *buf));
  7. char_u *do_bufdel __PARMS((int command, char_u *arg, int addr_count, int start_bnr, int end_bnr, int forceit));
  8. int do_buffer __PARMS((int action, int start, int dir, int count, int forceit));
  9. BUF *buflist_new __PARMS((char_u *fname, char_u *sfname, linenr_t lnum, int use_curbuf));
  10. void free_buf_options __PARMS((BUF *buf));
  11. int buflist_getfile __PARMS((int n, linenr_t lnum, int options, int forceit));
  12. void buflist_getlnum __PARMS((void));
  13. BUF *buflist_findname __PARMS((char_u *fname));
  14. int buflist_findpat __PARMS((char_u *pattern, char_u *pattern_end));
  15. int ExpandBufnames __PARMS((char_u *pat, int *num_file, char_u ***file, int options));
  16. BUF *buflist_findnr __PARMS((int nr));
  17. char_u *buflist_nr2name __PARMS((int n, int fullname, int helptail));
  18. void buflist_list __PARMS((void));
  19. int buflist_name_nr __PARMS((int fnum, char_u **fname, linenr_t *lnum));
  20. int setfname __PARMS((char_u *fname, char_u *sfname, int message));
  21. void setaltfname __PARMS((char_u *fname, char_u *sfname, linenr_t lnum));
  22. int buflist_add __PARMS((char_u *fname));
  23. void buflist_altlnum __PARMS((void));
  24. int otherfile __PARMS((char_u *fname));
  25. void fileinfo __PARMS((int fullname, int shorthelp, int dont_truncate));
  26. void cursor_pos_info __PARMS((void));
  27. void col_print __PARMS((char_u *buf, int col, int vcol));
  28. void maketitle __PARMS((void));
  29. void resettitle __PARMS((void));
  30. char_u *fix_fname __PARMS((char_u *fname));
  31. void fname_expand __PARMS((char_u **fname, char_u **sfname));
  32. void do_arg_all __PARMS((int count));
  33. void do_buffer_all __PARMS((int count, int all));
  34. void do_modelines __PARMS((void));
  35.