home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / util / edit / vim / src / proto / unix.pro < prev    next >
Encoding:
Text File  |  1994-08-04  |  1.4 KB  |  43 lines

  1. /* vi:ts=4:sw=4
  2.  *
  3.  * VIM - Vi IMproved        by Bram Moolenaar
  4.  *
  5.  * Read the file "credits.txt" for a list of people who contributed.
  6.  * Read the file "uganda.txt" for copying and usage conditions.
  7.  */
  8.  
  9. /*
  10.  * functions in unix.c
  11.  */
  12. void    mch_write __ARGS((char_u *, int));
  13. int     GetChars __ARGS((char_u *, int, int));
  14. int        mch_char_avail __ARGS((void));
  15. long    mch_avail_mem __ARGS((int));
  16. void    vim_delay __ARGS((void));
  17. void    mch_suspend __ARGS((void));
  18. void    mch_windinit __ARGS((void));
  19. void    check_win __ARGS((int, char **));
  20. void    fname_case __ARGS((char_u *));
  21. void    mch_settitle __ARGS((char_u *, char_u *));
  22. void    mch_restore_title __PARMS((int which));
  23. int     vim_dirname __ARGS((char_u *, int));
  24. int        FullName __ARGS((char_u *, char_u *, int));
  25. int        isFullName __ARGS((char_u *));
  26. long    getperm __ARGS((char_u *));
  27. int        setperm __ARGS((char_u *, int));
  28. int        isdir __ARGS((char_u *));
  29. void    mch_windexit __ARGS((int));
  30. void    mch_settmode __ARGS((int));
  31. int        mch_screenmode __ARGS((char_u *));
  32. int        mch_get_winsize __ARGS((void));
  33. void    mch_set_winsize __ARGS((void));
  34. int        call_shell __ARGS((char_u *, int, int));
  35. void    breakcheck __ARGS((void));
  36. int        ExpandWildCards __ARGS((int, char_u **, int *, char_u ***, int, int));
  37. void    FreeWild __ARGS((int, char_u **));
  38. int        has_wildcard __ARGS((char_u *));
  39. int        have_wildcard __ARGS((int, char_u **));
  40. #if defined(M_XENIX) || defined(UTS2)
  41. int        rename __ARGS((char_u *, char_u *));
  42. #endif
  43.