home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / magazine / drdobbs / 1991 / 10 / string / strine.cpp < prev    next >
C/C++ Source or Header  |  1991-07-30  |  323b  |  20 lines

  1. #include <string.h>
  2. #include <ctype.h>
  3. #include <errno.h>
  4. #include <string.hpp>
  5.  
  6. int operator!=(const String &a, const String &b)
  7. {
  8.     return !(a == b);
  9. }
  10.  
  11. int operator!=(const String &a, const char *s)
  12. {
  13.     return !(a == s);
  14. }
  15.  
  16. int operator!=(const char *s, const String &a)
  17. {
  18.     return !(a == s);
  19. }
  20.