home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Computer Select (Limited Edition)
/
Computer Select.iso
/
dobbs
/
v16n10
/
string.exe
/
STRILE.CPP
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1991-07-30
|
320 b
|
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);
}