ObjFW  Check-in [de836a5f2b]

Overview
Comment:OFString: Tiny documentation fix
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: de836a5f2b963b82f0e85326529408e715ea152b135b158b489dcf97946d5246
User & Date: js on 2017-06-25 16:53:36
Other Links: manifest | tags
Context
2017-06-25
17:08
OFDictionaryTests: Clean up variable names check-in: f8d89b56f2 user: js tags: trunk
16:53
OFString: Tiny documentation fix check-in: de836a5f2b user: js tags: trunk
2017-06-21
20:20
OFHTTPServer: Include the / in the URL path check-in: 2b6fb5530e user: js tags: trunk
Changes

Modified src/OFString.h from [e62b5692f3] to [5f1355b3eb].

652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
 * copy it.
 *
 * @return The OFString as a UTF-8 encoded C string
 */
- (const char *)UTF8String OF_RETURNS_INNER_POINTER;

/*!
 * @brief Returns the length of the string in Unicode characters.
 *
 * @return The length of the string in Unicode characters
 */
- (size_t)length;

/*!
 * @brief Returns the number of bytes the string needs in the specified
 *	  encoding.
 *







|

|







652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
 * copy it.
 *
 * @return The OFString as a UTF-8 encoded C string
 */
- (const char *)UTF8String OF_RETURNS_INNER_POINTER;

/*!
 * @brief Returns the length of the string in Unicode codepoints.
 *
 * @return The length of the string in Unicode codepoints
 */
- (size_t)length;

/*!
 * @brief Returns the number of bytes the string needs in the specified
 *	  encoding.
 *