Bump liberty

This commit is contained in:
2015-07-01 23:28:30 +02:00
parent 8d62d95918
commit 51bf132c6b
3 changed files with 6 additions and 18 deletions

View File

@@ -79,17 +79,6 @@ str_vector_find (const struct str_vector *v, const char *s)
return -1;
}
static char *
str_vector_steal (struct str_vector *self, size_t i)
{
// TODO: str_vector_remove() is then just free(str_vector_steal())
hard_assert (i < self->len);
char *tmp = self->vector[i];
memmove (self->vector + i, self->vector + i + 1,
(self->len-- - i) * sizeof *self->vector);
return tmp;
}
static int
strncasecmp_ascii (const char *a, const char *b, size_t n)
{