2 * Copyright 2008, Axel Dörfler, axeld@pinc-software.de.
3 * Distributed under the terms of the MIT license.
11 strncmp(char const *a
, char const *b
, size_t count
)
14 int cmp
= (unsigned char)*a
- (unsigned char)*b
++;
15 if (cmp
!= 0 || *a
++ == '\0')