@@ -21,18 +21,18 @@ BOOL is_utf8; } /** * Creates a new OFString. - * + * * \return An initialized OFString */ + new; /** * Creates a new OFString from a C string. - * + * * \param str A C string to initialize the OFString with * \return A new OFString */ + newFromCString: (const char*)str; @@ -43,11 +43,11 @@ */ - init; /** * Initializes an already allocated OFString from a C string. - * + * * \param str A C string to initialize the OFString with * \return An initialized OFString */ - initFromCString: (const char*)str; @@ -61,11 +61,11 @@ */ - (size_t)length; /** * Clones the OFString, creating a new one. - * + * * \return A copy of the OFString */ - (OFString*)clone; /**