diff options
author | Gavin Howard <gavin@yzena.com> | 2021-06-24 10:49:00 -0600 |
---|---|---|
committer | Gavin Howard <gavin@yzena.com> | 2021-06-24 10:49:00 -0600 |
commit | 6110b6c977dbca97a5d3b084503705b544de3604 (patch) | |
tree | 09ad90cd135c6935cd8ddd7d02bbc025a764d947 /src/history.c | |
parent | 29e4d559c2bcfb8168ad1f124aa2758e7697c5d1 (diff) | |
download | platform_external_bc-6110b6c977dbca97a5d3b084503705b544de3604.tar.gz platform_external_bc-6110b6c977dbca97a5d3b084503705b544de3604.tar.bz2 platform_external_bc-6110b6c977dbca97a5d3b084503705b544de3604.zip |
More documentation and cleanup work
Signed-off-by: Gavin Howard <gavin@yzena.com>
Diffstat (limited to 'src/history.c')
-rw-r--r-- | src/history.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/history.c b/src/history.c index 5d5fa559..5c1a8c4b 100644 --- a/src/history.c +++ b/src/history.c @@ -174,6 +174,7 @@ static void bc_history_add_empty(BcHistory *h); /** * Check if the code is a wide character. + * @param cp The codepoint to check. */ static bool bc_history_wchar(uint32_t cp) { @@ -196,6 +197,7 @@ static bool bc_history_wchar(uint32_t cp) { /** * Check if the code is a combining character. + * @param cp The codepoint to check. */ static bool bc_history_comboChar(uint32_t cp) { |