Bump liberty

This commit is contained in:
2015-05-02 22:35:25 +02:00
parent cb2cbc9100
commit 1b891ab01b
2 changed files with 1 additions and 26 deletions

View File

@@ -475,31 +475,6 @@ fail:
// --- 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
split_str (const char *s, char delimiter, struct str_vector *out)
{

Submodule liberty updated: 8c6d18757d...37005cc443