home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / e / emxdev8f.zip / STRINGS.H < prev    next >
C/C++ Source or Header  |  1992-11-18  |  508b  |  24 lines

  1. /* strings.h (emx+gcc) */
  2.  
  3. #if !defined (_STRINGS_H)
  4. #define _STRINGS_H
  5.  
  6. #include <string.h>
  7.  
  8. #if defined (__cplusplus)
  9. extern "C" {
  10. #endif
  11.  
  12. int  bcmp (__const__ void *buffer1, __const__ void *buffer2, size_t n);
  13. void bcopy (__const__ void *src, void *dst, size_t n);
  14. void bzero (void *buffer, size_t n);
  15. int ffs (int i);
  16. char *index (__const__ char *string, int c);
  17. char *rindex (__const__ char *string, int c);
  18.  
  19. #if defined (__cplusplus)
  20. }
  21. #endif
  22.  
  23. #endif /* !defined (_STRINGS_H) */
  24.