From 7b6ce02ebaf5c59c985921cb298f381feda85c9b Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Fri, 4 Nov 2022 20:23:56 -0500 Subject: [PATCH] Cleanup: Add comment about special control code handling. --- level_0/f_utf/c/utf/is.h | 2 ++ level_0/f_utf/c/utf/is_character.h | 2 ++ 2 files changed, 4 insertions(+) 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. * -- 1.8.3.1