home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
magazine
/
drdobbs
/
1991
/
10
/
string
/
strige.cpp
< prev
next >
Wrap
C/C++ Source or Header
|
1991-07-30
|
320b
|
20 lines
#include <string.h>
#include <ctype.h>
#include <errno.h>
#include <string.hpp>
int operator>=(const String &a, const String &b)
{
return !(a < b);
}
int operator>=(const String &a, const char *s)
{
return !(a < s);
}
int operator>=(const char *s, const String &a)
{
return !(s < a);
}