From a0fc54d132a9c62c79f5ad234fd40add95beb816 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 0266509..be8868f 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 fd3f571..e107503 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