adjusted indentation with astyle; added Id keyword

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52383 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi
2008-03-08 14:43:31 +00:00
parent aa6ec1d787
commit 7c913512a4
269 changed files with 9052 additions and 9058 deletions

View File

@@ -1,34 +1,34 @@
/////////////////////////////////////////////////////////////////////////////
// Name: wxcrt.h
// Purpose: documentation for global functions
// Author: wxWidgets team
// RCS-ID: $Id$
// Licence: wxWindows license
/////////////////////////////////////////////////////////////////////////////
/**
Returns a negative value, 0, or positive value if @e p1 is less than, equal
to or greater than @e p2. The comparison is case-sensitive.
This function complements the standard C function @e stricmp() which performs
case-insensitive comparison.
// Name: wxcrt.h
// Purpose: documentation for global functions
// Author: wxWidgets team
// RCS-ID: $Id$
// Licence: wxWindows license
/////////////////////////////////////////////////////////////////////////////
/**
Returns a negative value, 0, or positive value if @e p1 is less than, equal
to or greater than @e p2. The comparison is case-sensitive.
This function complements the standard C function @e stricmp() which performs
case-insensitive comparison.
*/
int wxStrcmp(const char * p1, const char * p2);
/**
@b NB: This function is obsolete, use wxString instead.
A macro defined as:
@code
#define wxStringEq(s1, s2) (s1 && s2 && (strcmp(s1, s2) == 0))
@endcode
/**
@b NB: This function is obsolete, use wxString instead.
A macro defined as:
@code
#define wxStringEq(s1, s2) (s1 && s2 && (strcmp(s1, s2) == 0))
@endcode
*/
bool wxStringEq(const wxString& s1, const wxString& s2);
/**
@b NB: This function is obsolete, use wxString::Find instead.
Returns @true if the substring @e s1 is found within @e s2,
ignoring case if @e exact is @false. If @e subString is @false,
no substring matching is done.
@@ -42,20 +42,20 @@ bool wxStringMatch(const wxString& s1, const wxString& s2,
like @c snprintf() available on some platforms. The only difference with
sprintf() is that an additional argument - buffer size - is taken and the
buffer is never overflowed.
Returns the number of characters copied to the buffer or -1 if there is not
enough space.
@sa wxVsnprintf, wxString::Printf
*/
int wxSnprintf(wxChar * buf, size_t len, const wxChar * format,
...);
...);
/**
This is a convenience function wrapping
wxStringTokenizer which simply returns all tokens
found in the given @e str in an array.
Please see
wxStringTokenizer::wxStringTokenizer
for the description of the other parameters.
@@ -74,7 +74,7 @@ size_t wxStrlen(const char * p);
/**
The same as wxSnprintf but takes a @c va_list
argument instead of arbitrary number of parameters.
Note that if @c wxUSE_PRINTF_POS_PARAMS is set to 1, then this function supports
positional arguments (see wxString::Printf for more information).
However other functions of the same family (wxPrintf, wxSprintf, wxFprintf,
@@ -82,7 +82,7 @@ size_t wxStrlen(const char * p);
wxVfprintf, wxVprintf, wxVsprintf) currently do not to support positional
parameters
even when @c wxUSE_PRINTF_POS_PARAMS is 1.
@sa wxSnprintf, wxString::PrintfV
*/
int wxVsnprintf(wxChar * buf, size_t len, const wxChar * format,
@@ -97,7 +97,7 @@ bool wxIsEmpty(const char * p);
/**
Returns a negative value, 0, or positive value if @e p1 is less than, equal
to or greater than @e p2. The comparison is case-insensitive.
This function complements the standard C function @e strcmp() which performs
case-sensitive comparison.
*/