Chameleon

Chameleon Svn Source Tree

Root/branches/xZenu/src/util/doxygen/examples/relates.cpp

Source at commit 1406 created 12 years 10 months ago.
By meklort, Revert drivers.c so that kexts are only loaded when OSBundleRequired is set and that value is not safe mode. Added some comments about it too.
1/*!
2 * A String class.
3 */
4
5class String
6{
7 friend int strcmp(const String &,const String &);
8};
9
10/*!
11 * Compares two strings.
12 */
13
14int strcmp(const String &s1,const String &s2)
15{
16}
17
18/*! \relates String
19 * A string debug function.
20 */
21void stringDebug()
22{
23}
24

Archive Download this file

Revision: 1406