home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 22 gnu / 22-gnu.zip / lib270b.zip / emx / include / cpp / string.h < prev    next >
C/C++ Source or Header  |  1995-06-07  |  647b  |  20 lines

  1. // -*- C++ -*- forwarding header.
  2. // This file is part of the GNU ANSI C++ Library.
  3.  
  4. #ifndef __CP_STRING_H__
  5. #include <cstring>
  6.  
  7. #if _G_NS
  8. using std::memchr;   using std::memcmp;   using std::memcpy;
  9. using std::memmove;  using std::memset;
  10. using std::strcoll;  using std::strcat;   using std::strchr;
  11. using std::strcmp;   using std::strcpy;   using std::strcspn;
  12. using std::strerror; using std::strlen;   using std::strncat;
  13. using std::strncmp;  using std::strncpy;  using std::strpbrk;
  14. using std::strrchr;  using std::strspn;   using std::strstr;
  15. using std::strtok;   using std::strxfrm;
  16. #endif
  17.  
  18. #define __CP_STRING_H__
  19. #endif
  20.