home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / util / edit / vim / src / proto / alloc.pro next >
Encoding:
Text File  |  1994-08-09  |  456 b   |  9 lines

  1. /* alloc.c */
  2. unsigned char *alloc __PARMS((unsigned int size));
  3. unsigned char *lalloc __PARMS((unsigned long size, int message));
  4. unsigned char *strsave __PARMS((unsigned char *string));
  5. unsigned char *strnsave __PARMS((unsigned char *string, int len));
  6. void copy_spaces __PARMS((unsigned char *ptr, unsigned long count));
  7. void del_spaces __PARMS((unsigned char *ptr));
  8. int vim_strnicmp __PARMS((unsigned char *s1, unsigned char *s2, unsigned long len));
  9.