ncurses: Add few missing dependencies.
[dragonfly.git] / contrib / opie / libmissing / memcmp.c
blobe19beafcdb954a79dffd6c7f81c030fce4b393c7
1 /* strncasecmp.c: A replacement for the strncasecmp function
3 %%% copyright-cmetz
4 This software is Copyright 1996 by Craig Metz, All Rights Reserved.
5 The Inner Net License Version 2 applies to this software.
6 You should have received a copy of the license with this software. If
7 you didn't get a copy, you may request one from <license@inner.net>.
9 History:
11 Created by cmetz for OPIE 2.2.
13 #include "opie_cfg.h"
14 #include "opie.h"
16 int memcmp FUNCTION((s1, s2, n), unsigned char *s1 AND unsigned char *s2 AND int n)
18 while(n--) {
19 if (*s1 != *s2)
20 return (*s1 > *s2) ? 1 : -1;
21 s1++;
22 s2++;
24 return 0;