[ae1c11b] | 1 | /*
|
---|
| 2 | * Copyright (c) 2011 Jiri Zarevucky
|
---|
[4f4b4e7] | 3 | * Copyright (c) 2011 Petr Koupy
|
---|
[ae1c11b] | 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 | */
|
---|
[fc3680e] | 33 | /** @file Additional string manipulation.
|
---|
[ae1c11b] | 34 | */
|
---|
| 35 |
|
---|
| 36 | #ifndef POSIX_STRINGS_H_
|
---|
| 37 | #define POSIX_STRINGS_H_
|
---|
| 38 |
|
---|
[4f4b4e7] | 39 | /* Search Functions */
|
---|
[fc3680e] | 40 | #ifndef POSIX_STRING_H_
|
---|
[4f4b4e7] | 41 | extern int posix_ffs(int i);
|
---|
[da084d9] | 42 | #endif
|
---|
[ae1c11b] | 43 |
|
---|
[4f4b4e7] | 44 | /* String/Array Comparison */
|
---|
[458d356] | 45 | #ifndef POSIX_STRING_H_
|
---|
[4f4b4e7] | 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);
|
---|
[458d356] | 48 | #endif
|
---|
[ae1c11b] | 49 |
|
---|
[6921178] | 50 | /* TODO: not implemented due to missing locale support
|
---|
[ae1c11b] | 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 */
|
---|
[4f4b4e7] | 57 | extern int posix_bcmp(const void *mem1, const void *mem2, size_t n);
|
---|
[fc3680e] | 58 | extern void posix_bcopy(const void *src, void *dest, size_t n);
|
---|
[4f4b4e7] | 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);
|
---|
[ae1c11b] | 62 |
|
---|
| 63 | #ifndef LIBPOSIX_INTERNAL
|
---|
| 64 | #define ffs posix_ffs
|
---|
[4f4b4e7] | 65 |
|
---|
[ae1c11b] | 66 | #define strcasecmp posix_strcasecmp
|
---|
| 67 | #define strncasecmp posix_strncasecmp
|
---|
[4f4b4e7] | 68 |
|
---|
[ae1c11b] | 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 | */
|
---|