From: Kevin Day Date: Sat, 5 Nov 2022 01:23:56 +0000 (-0500) Subject: Cleanup: Add comment about special control code handling. X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=7b6ce02ebaf5c59c985921cb298f381feda85c9b;p=fll Cleanup: Add comment about special control code handling. --- diff --git a/level_0/f_utf/c/utf/is.h b/level_0/f_utf/c/utf/is.h index d9b83cd..ce6643e 100644 --- a/level_0/f_utf/c/utf/is.h +++ b/level_0/f_utf/c/utf/is.h @@ -169,6 +169,8 @@ extern "C" { * * This includes control code and control format characters. * + * The control codes U+0009..U+000D and U+0085 are considered white space and line breaking. + * * @param sequence * The byte sequence to validate as a character. * There must be enough space allocated to compare against, as limited by width_max. diff --git a/level_0/f_utf/c/utf/is_character.h b/level_0/f_utf/c/utf/is_character.h index bbcffd6..740c651 100644 --- a/level_0/f_utf/c/utf/is_character.h +++ b/level_0/f_utf/c/utf/is_character.h @@ -146,6 +146,8 @@ extern "C" { * * This includes control code and control format characters. * + * The control codes U+0009..U+000D and U+0085 are considered white space and line breaking. + * * @param sequence * The byte sequence to validate as a character. *