Push some doc changes I have on my harddrive. They don't (all) conform to the guidelines, but I wanted to put these in the repository nonetheless.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@20472 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Niels Sascha Reedijk
2007-03-30 13:50:00 +00:00
parent 0bfaee2899
commit e24e2c66c9
9 changed files with 623 additions and 126 deletions
+11 -4
View File
@@ -1,16 +1,23 @@
//
// Copyright 2007, Haiku Inc. All Rights Reserved.
//
// Distributed under the terms of the MIT License.
//
//
// Documentation by:
// Niels Sascha Reedijk <[email protected]>
// Corresponds to:
// /trunk/headers/os/support/String.h rev 19731
// /trunk/src/kits/support/String.cpp rev 19731
//
/*!
\file String.h
\brief Implements the BString class and global operators and functions for handling strings.
\brief Defines the BString class and global operators and functions for handling strings.
*/
/*!
\class BString
\class BString String.h
\ingroup support
\ingroup libbe
\brief String class supporting common string operations.
@@ -26,7 +33,7 @@ takes care to allocate and free memory for you, so it will always be
/*!
\var char* BString::fPrivateData
\brief BString's storage for data
\brief BString's storage for data.
This member is deprecated and might even go \c private in future releases.
@@ -563,7 +570,7 @@ This method calls operator+=(const char *str).
\fn void BString::MoveInto(char *into, int32 from, int32 length)
\brief Move the BString data (or part of it) into the given buffer.
\param into The buffer where to move the object.
\param from The offset (zero based) where to begin the move
\param from The offset (zero based) where to begin the move.
\param length The amount of bytes to move.
*/