1 | /** @file
|
---|
2 | Copyright (c) 2011, Intel Corporation. All rights reserved.<BR>
|
---|
3 | This program and the accompanying materials are licensed and made available under
|
---|
4 | the terms and conditions of the BSD License that accompanies this distribution.
|
---|
5 | The full text of the license may be found at
|
---|
6 | http://opensource.org/licenses/bsd-license.
|
---|
7 |
|
---|
8 | THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
---|
9 | WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
---|
10 |
|
---|
11 | Copyright (c) 1998 The NetBSD Foundation, Inc.
|
---|
12 | All rights reserved.
|
---|
13 |
|
---|
14 | This code is derived from software contributed to The NetBSD Foundation
|
---|
15 | by Klaus Klein.
|
---|
16 |
|
---|
17 | Redistribution and use in source and binary forms, with or without
|
---|
18 | modification, are permitted provided that the following conditions
|
---|
19 | are met:
|
---|
20 | 1. Redistributions of source code must retain the above copyright
|
---|
21 | notice, this list of conditions and the following disclaimer.
|
---|
22 | 2. Redistributions in binary form must reproduce the above copyright
|
---|
23 | notice, this list of conditions and the following disclaimer in the
|
---|
24 | documentation and/or other materials provided with the distribution.
|
---|
25 |
|
---|
26 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
---|
27 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
---|
28 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
---|
29 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
---|
30 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
---|
31 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
---|
32 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
---|
33 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
---|
34 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
---|
35 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
---|
36 | POSSIBILITY OF SUCH DAMAGE.
|
---|
37 |
|
---|
38 | NetBSD: strings.h,v 1.13 2008/04/28 20:22:54 martin Exp
|
---|
39 | */
|
---|
40 | #ifndef _STRINGS_H_
|
---|
41 | #define _STRINGS_H_
|
---|
42 |
|
---|
43 | #include <machine/ansi.h>
|
---|
44 | #include <sys/featuretest.h>
|
---|
45 |
|
---|
46 | __BEGIN_DECLS
|
---|
47 | void bzero(void *, size_t);
|
---|
48 | int ffs(int);
|
---|
49 | __END_DECLS
|
---|
50 |
|
---|
51 | #define index(x,y) strchr((x), (y))
|
---|
52 | #define rindex(x,y) strrchr((x), (y))
|
---|
53 |
|
---|
54 | #include <string.h>
|
---|
55 |
|
---|
56 | #endif /* !defined(_STRINGS_H_) */
|
---|