home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / v / vim_src.zip / MARK.H < prev    next >
C/C++ Source or Header  |  1993-01-12  |  546b  |  29 lines

  1. /* vi:ts=4:sw=4
  2.  *
  3.  * VIM - Vi IMitation
  4.  *
  5.  * Code Contributions By:    Bram Moolenaar            mool@oce.nl
  6.  *                            Tim Thompson            twitch!tjt
  7.  *                            Tony Andrews            onecom!wldrdg!tony 
  8.  *                            G. R. (Fred) Walter        watmath!watcgl!grwalter 
  9.  */
  10.  
  11. /*
  12.  * mark.h: definitions shared between tag.c and mark.c 
  13.  */
  14.  
  15. struct mark
  16. {
  17.     char           *ptr;
  18.     colnr_t         col;
  19. };
  20.  
  21. struct filemark
  22. {
  23.     struct mark        mark;            /* cursor position */
  24.     linenr_t        lnum;            /* last known line number */
  25.     int                fnum;            /* file number */
  26. };
  27.  
  28. char *fm_getname __ARGS((struct filemark *));
  29.