home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.0 / NeXTSTEP3.0.iso / NextDeveloper / Headers / bsd / strings.h < prev    next >
Text File  |  1991-06-17  |  673b  |  31 lines

  1. /*
  2.  * Copyright (c) 1980 Regents of the University of California.
  3.  * All rights reserved.  The Berkeley software License Agreement
  4.  * specifies the terms and conditions for redistribution.
  5.  *
  6.  *    @(#)strings.h    5.1 (Berkeley) 5/30/85
  7.  */
  8.  
  9. /*
  10.  * External function definitions
  11.  * for routines described in string(3).
  12.  */
  13.  
  14. #ifdef __STRICT_BSD__
  15. extern char *strcat();
  16. extern char *strncat();
  17. extern int strcmp();
  18. extern int strncmp();
  19. extern int strcasecmp();
  20. extern int strncasecmp();
  21. extern char *strcpy();
  22. extern char *strncpy();
  23. extern int strlen();
  24. extern char *strchr();
  25. extern char *strrchr();
  26. extern char *index();
  27. extern char *rindex();
  28. #else
  29. #import <string.h>
  30. #endif
  31.