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