1 | /*
|
---|
2 | * Copyright (c) 2011 Jiri Zarevucky
|
---|
3 | * Copyright (c) 2011 Petr Koupy
|
---|
4 | * All rights reserved.
|
---|
5 | *
|
---|
6 | * Redistribution and use in source and binary forms, with or without
|
---|
7 | * modification, are permitted provided that the following conditions
|
---|
8 | * are met:
|
---|
9 | *
|
---|
10 | * - Redistributions of source code must retain the above copyright
|
---|
11 | * notice, this list of conditions and the following disclaimer.
|
---|
12 | * - Redistributions in binary form must reproduce the above copyright
|
---|
13 | * notice, this list of conditions and the following disclaimer in the
|
---|
14 | * documentation and/or other materials provided with the distribution.
|
---|
15 | * - The name of the author may not be used to endorse or promote products
|
---|
16 | * derived from this software without specific prior written permission.
|
---|
17 | *
|
---|
18 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
19 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
20 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
21 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
22 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
23 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
24 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
25 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
26 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
27 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
28 | */
|
---|
29 |
|
---|
30 | /** @addtogroup libposix
|
---|
31 | * @{
|
---|
32 | */
|
---|
33 | /** @file Additional string manipulation.
|
---|
34 | */
|
---|
35 |
|
---|
36 | #ifndef POSIX_STRINGS_H_
|
---|
37 | #define POSIX_STRINGS_H_
|
---|
38 |
|
---|
39 | /* Search Functions */
|
---|
40 | #ifndef POSIX_STRING_H_
|
---|
41 | extern int posix_ffs(int i);
|
---|
42 | #endif
|
---|
43 |
|
---|
44 | /* String/Array Comparison */
|
---|
45 | #ifndef POSIX_STRING_H_
|
---|
46 | extern int posix_strcasecmp(const char *s1, const char *s2);
|
---|
47 | extern int posix_strncasecmp(const char *s1, const char *s2, size_t n);
|
---|
48 | #endif
|
---|
49 |
|
---|
50 | /* TODO: not implemented due to missing locale support
|
---|
51 | *
|
---|
52 | * int strcasecmp_l(const char *, const char *, locale_t);
|
---|
53 | * int strncasecmp_l(const char *, const char *, size_t, locale_t);
|
---|
54 | */
|
---|
55 |
|
---|
56 | /* Legacy Functions */
|
---|
57 | extern int posix_bcmp(const void *mem1, const void *mem2, size_t n);
|
---|
58 | extern void posix_bcopy(const void *src, void *dest, size_t n);
|
---|
59 | extern void posix_bzero(void *mem, size_t n);
|
---|
60 | extern char *posix_index(const char *s, int c);
|
---|
61 | extern char *posix_rindex(const char *s, int c);
|
---|
62 |
|
---|
63 | #ifndef LIBPOSIX_INTERNAL
|
---|
64 | #define ffs posix_ffs
|
---|
65 |
|
---|
66 | #define strcasecmp posix_strcasecmp
|
---|
67 | #define strncasecmp posix_strncasecmp
|
---|
68 |
|
---|
69 | #define bcmp posix_bcmp
|
---|
70 | #define bcopy posix_bcopy
|
---|
71 | #undef bzero
|
---|
72 | #define bzero posix_bzero
|
---|
73 | #define index posix_index
|
---|
74 | #define rindex posix_rindex
|
---|
75 | #endif
|
---|
76 |
|
---|
77 | #endif // POSIX_STRINGS_H_
|
---|
78 |
|
---|
79 | /** @}
|
---|
80 | */
|
---|