Bump liberty
This commit is contained in:
parent
cb2cbc9100
commit
1b891ab01b
25
common.c
25
common.c
|
@ -475,31 +475,6 @@ fail:
|
||||||
|
|
||||||
// --- To be moved to liberty --------------------------------------------------
|
// --- To be moved to liberty --------------------------------------------------
|
||||||
|
|
||||||
static bool
|
|
||||||
isalpha_ascii (int c)
|
|
||||||
{
|
|
||||||
c &= ~32;
|
|
||||||
return c >= 'A' && c <= 'Z';
|
|
||||||
}
|
|
||||||
|
|
||||||
static bool
|
|
||||||
isdigit_ascii (int c)
|
|
||||||
{
|
|
||||||
return c >= '0' && c <= '9';
|
|
||||||
}
|
|
||||||
|
|
||||||
static bool
|
|
||||||
isalnum_ascii (int c)
|
|
||||||
{
|
|
||||||
return isalpha_ascii (c) || isdigit_ascii (c);
|
|
||||||
}
|
|
||||||
|
|
||||||
static int
|
|
||||||
toupper_ascii (int c)
|
|
||||||
{
|
|
||||||
return c >= 'A' && c <= 'Z' ? c : c - ('a' - 'A');
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
split_str (const char *s, char delimiter, struct str_vector *out)
|
split_str (const char *s, char delimiter, struct str_vector *out)
|
||||||
{
|
{
|
||||||
|
|
2
liberty
2
liberty
|
@ -1 +1 @@
|
||||||
Subproject commit 8c6d18757d2d4135963f3dbab6d2d5ec8c8b6af3
|
Subproject commit 37005cc443d8725a0103fdd4ded0b1d38853ef42
|
Loading…
Reference in New Issue