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 / alloc.pro next >
Encoding:
Text File  |  1997-03-12  |  790 b   |  17 lines

  1. /* alloc.c */
  2. char_u *alloc __PARMS((unsigned size));
  3. char_u *alloc_check __PARMS((unsigned size));
  4. char_u *lalloc __PARMS((long_u size, int message));
  5. void do_outofmem_msg __PARMS((void));
  6. char_u *strsave __PARMS((char_u *string));
  7. char_u *strnsave __PARMS((char_u *string, int len));
  8. char_u *strsave_escaped __PARMS((char_u *string, char_u *esc_chars));
  9. void copy_spaces __PARMS((char_u *ptr, size_t count));
  10. void del_trailing_spaces __PARMS((char_u *ptr));
  11. int copy_option_part __PARMS((char_u **option, char_u *buf, int maxlen, char *sep_chars));
  12. void vim_free __PARMS((void *x));
  13. int vim_strnicmp __PARMS((char_u *s1, char_u *s2, size_t len));
  14. char_u *vim_strchr __PARMS((char_u *string, int n));
  15. char_u *vim_strrchr __PARMS((char_u *string, int n));
  16. int vim_isspace __PARMS((int x));
  17.