diff options
| author | Mattias Andrée <m@maandree.se> | 2026-01-24 21:10:12 +0100 |
|---|---|---|
| committer | Mattias Andrée <m@maandree.se> | 2026-01-24 21:10:12 +0100 |
| commit | 80350b43c77a7835546a8c29e0d93eeb3cddfadd (patch) | |
| tree | fc9db67a19eb38daacac5b18b409d1008ad81165 /libcharconv_subscript.c | |
| parent | Add README (diff) | |
| download | charconv-80350b43c77a7835546a8c29e0d93eeb3cddfadd.tar.gz charconv-80350b43c77a7835546a8c29e0d93eeb3cddfadd.tar.bz2 charconv-80350b43c77a7835546a8c29e0d93eeb3cddfadd.tar.xz | |
Add superscript and subscript (so far only with digits) and lycian and lydian
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'libcharconv_subscript.c')
| -rw-r--r-- | libcharconv_subscript.c | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/libcharconv_subscript.c b/libcharconv_subscript.c new file mode 100644 index 0000000..35a3a72 --- /dev/null +++ b/libcharconv_subscript.c @@ -0,0 +1,29 @@ +/* See LICENSE file for copyright and license details. */ +#include "lib-common.h" + + +enum libcharconv_result +libcharconv_subscript(const char *s, size_t slen, size_t *n, uint_least32_t *cp, size_t *ncp) +{ + uint_least32_t c; + *n = 0; + for (; slen--; s++) { + if ('0' <= *s && *s <= '9') { + c = (uint_least32_t)(UINT32_C(0x2080) + (unsigned)(*s - '0')); + goto conv; + } else { + *n += 1u; + } + } +no_conv: + return LIBCHARCONV_NO_CONVERT; + +conv: + if (*n) + goto no_conv; + if (*ncp) + *cp = c; + *n += 1u; + *ncp = 1u; + return LIBCHARCONV_CONVERTED; +} |
