1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2026-01-26 21:41:34 +03:00

doc: Fix some damage from automated conversions

Add some newlines, fix returns.
This commit is contained in:
Nick Wellnhofer
2025-05-09 18:52:36 +02:00
parent 98a61c9dff
commit 442c1903af
22 changed files with 109 additions and 29 deletions

View File

@@ -41,6 +41,7 @@ typedef xmlHashTable *xmlHashTablePtr;
* \#define XML_CAST_FPTR(fptr) (*(void **)(&fptr))
* This macro violated ISO C aliasing rules (gcc4 on s390 broke)
* so it is disabled now
*
* @param fptr pointer to a function
*/

View File

@@ -87,6 +87,7 @@ extern "C" {
* [2] Char ::= #x9 | #xA | #xD | [#x20...]
*
* any byte character in the accepted range
*
* @param c an byte value (int)
*/
#define IS_BYTE_CHAR(c) xmlIsChar_ch(c)
@@ -98,6 +99,7 @@ extern "C" {
* | [#x10000-#x10FFFF]
*
* any Unicode character, excluding the surrogate blocks, FFFE, and FFFF.
*
* @param c an UNICODE value (int)
*/
#define IS_CHAR(c) xmlIsCharQ(c)