shithub: riscv

ref: 072c45d4633d5f03e3b79f9c60c3655a6d4a1149
dir: /sys/src/ape/lib/ap/gen/strncmp.c/

View raw version
#include <string.h>

int
strncmp(const char *s1, const char *s2, size_t n)
{
	unsigned c1, c2;
	long nn;

	nn = n;
	while(nn > 0) {
		c1 = *s1++;
		c2 = *s2++;
		nn--;
		if(c1 != c2) {
			if(c1 > c2)
				return 1;
			return -1;
		}
		if(c1 == 0)
			break;
	}
	return 0;
}