]> git.evergreen-ils.org Git - OpenSRF.git/blob - src/ports/freebsd/strnlen.c
81a6f17fba59a541e74f64ddc914db851ba3e06d
[OpenSRF.git] / src / ports / freebsd / strnlen.c
1 /*
2  * Copyright (c) 2007 The Akuma Project
3  * 
4  * Permission is hereby granted, free of charge, to any person obtaining a copy
5  * of this software and associated documentation files (the "Software"), to
6  * deal in the Software without restriction, including without limitation the
7  * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
8  * sell copies of the Software, and to permit persons to whom the Software is
9  * furnished to do so, subject to the following conditions:
10  * 
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  * 
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
20  * IN THE SOFTWARE.
21  *
22  * $Id$
23  */
24
25 /*
26  * sys/types.h is a Single Unix Specification header and defines size_t.
27  */
28
29 #include <sys/types.h>
30
31 /*
32  * As per the Linux manual page:
33  *
34  * The strnlen() function returns the number of characters in the string
35  * pointed to by s, not including the terminating '\0' character, but at most
36  * maxlen. In doing this, strnlen() looks only at the first maxlen characters
37  * at s and never beyond s+maxlen.
38  *
39  * The strnlen() function returns strlen(s), if that is less than maxlen, or
40  * maxlen if there is no '\0' character among the first maxlen characters
41  * pointed to by s.
42  */
43
44 size_t
45 strnlen(const char *string, size_t maxlen)
46 {
47         int len = 0;
48
49         if (maxlen == 0)
50                 return (0);
51
52         while (*string++ && ++len < maxlen)
53                 ;
54
55         return (len);
56 }