home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
doxg1211.zip
/
doxygen.zip
/
examples
/
relates.cpp
< prev
next >
Wrap
C/C++ Source or Header
|
1999-12-04
|
265b
|
25 lines
/*!
* A String class.
*/
class String
{
friend int strcmp(const String &,const String &);
};
/*!
* Compares two strings.
*/
int strcmp(const String &s1,const String &s2)
{
}
/*! \relates String
* A string debug function.
*/
void stringDebug()
{
}