Improve the process for GNU tools
[minix3.git] / external / bsd / mdocml / dist / compat_strnlen.c
blob386c489867e83c370299a47d33ea420a7f4bcf27
1 #ifdef HAVE_CONFIG_H
2 #include "config.h"
3 #endif
5 #ifdef HAVE_STRNLEN
7 int dummy;
9 #else
11 /* ($)OpenBSD: strnlen.c,v 1.4 2012/04/26 01:22:31 matthew Exp $ */
14 * Copyright (c) 2010 Todd C. Miller <Todd.Miller@courtesan.com>
16 * Permission to use, copy, modify, and distribute this software for any
17 * purpose with or without fee is hereby granted, provided that the above
18 * copyright notice and this permission notice appear in all copies.
20 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
21 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
22 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
23 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
24 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
25 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
26 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
29 #include <sys/types.h>
30 #include <string.h>
32 size_t
33 strnlen(const char *str, size_t maxlen)
35 const char *cp;
37 for (cp = str; maxlen != 0 && *cp != '\0'; cp++, maxlen--)
40 return (size_t)(cp - str);
43 #endif