[7ad3c2f] | 1 | /*
|
---|
[df4ed85] | 2 | * Copyright (c) 2005 Martin Decky
|
---|
[7ad3c2f] | 3 | * All rights reserved.
|
---|
| 4 | *
|
---|
| 5 | * Redistribution and use in source and binary forms, with or without
|
---|
| 6 | * modification, are permitted provided that the following conditions
|
---|
| 7 | * are met:
|
---|
| 8 | *
|
---|
| 9 | * - Redistributions of source code must retain the above copyright
|
---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
---|
| 11 | * - Redistributions in binary form must reproduce the above copyright
|
---|
| 12 | * notice, this list of conditions and the following disclaimer in the
|
---|
| 13 | * documentation and/or other materials provided with the distribution.
|
---|
| 14 | * - The name of the author may not be used to endorse or promote products
|
---|
| 15 | * derived from this software without specific prior written permission.
|
---|
| 16 | *
|
---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 27 | */
|
---|
| 28 |
|
---|
[fadd381] | 29 | /** @addtogroup libc
|
---|
[b2951e2] | 30 | * @{
|
---|
| 31 | */
|
---|
| 32 | /** @file
|
---|
| 33 | */
|
---|
| 34 |
|
---|
[19f857a] | 35 | #ifndef LIBC_STR_H_
|
---|
| 36 | #define LIBC_STR_H_
|
---|
[7ad3c2f] | 37 |
|
---|
[e64c4b2] | 38 | #include <mem.h>
|
---|
[5d4e90f0] | 39 | #include <sys/types.h>
|
---|
[171f9a1] | 40 | #include <bool.h>
|
---|
| 41 |
|
---|
[d4a3ee5] | 42 | #define U_SPECIAL '?'
|
---|
[171f9a1] | 43 |
|
---|
[54a6ff6] | 44 | /** No size limit constant */
|
---|
[f2b8cdc] | 45 | #define STR_NO_LIMIT ((size_t) -1)
|
---|
| 46 |
|
---|
[54a6ff6] | 47 | /** Maximum size of a string containing @c length characters */
|
---|
[92fd52d7] | 48 | #define STR_BOUNDS(length) ((length) << 2)
|
---|
[f2b8cdc] | 49 |
|
---|
[171f9a1] | 50 | extern wchar_t str_decode(const char *str, size_t *offset, size_t sz);
|
---|
| 51 | extern int chr_encode(const wchar_t ch, char *str, size_t *offset, size_t sz);
|
---|
| 52 |
|
---|
[f2b8cdc] | 53 | extern size_t str_size(const char *str);
|
---|
| 54 | extern size_t wstr_size(const wchar_t *str);
|
---|
| 55 |
|
---|
[d4a3ee5] | 56 | extern size_t str_lsize(const char *str, size_t max_len);
|
---|
| 57 | extern size_t wstr_lsize(const wchar_t *str, size_t max_len);
|
---|
[f2b8cdc] | 58 |
|
---|
[d4a3ee5] | 59 | extern size_t str_length(const char *str);
|
---|
| 60 | extern size_t wstr_length(const wchar_t *wstr);
|
---|
[f2b8cdc] | 61 |
|
---|
[d4a3ee5] | 62 | extern size_t str_nlength(const char *str, size_t size);
|
---|
| 63 | extern size_t wstr_nlength(const wchar_t *str, size_t size);
|
---|
[f2b8cdc] | 64 |
|
---|
| 65 | extern bool ascii_check(wchar_t ch);
|
---|
| 66 | extern bool chr_check(wchar_t ch);
|
---|
| 67 |
|
---|
| 68 | extern int str_cmp(const char *s1, const char *s2);
|
---|
[d4a3ee5] | 69 | extern int str_lcmp(const char *s1, const char *s2, size_t max_len);
|
---|
[f2b8cdc] | 70 |
|
---|
[6eb2e96] | 71 | extern void str_cpy(char *dest, size_t size, const char *src);
|
---|
| 72 | extern void str_ncpy(char *dest, size_t size, const char *src, size_t n);
|
---|
[4482bc7] | 73 | extern void str_append(char *dest, size_t size, const char *src);
|
---|
[6eb2e96] | 74 |
|
---|
[0f06dbc] | 75 | extern void wstr_to_str(char *dest, size_t size, const wchar_t *src);
|
---|
[b67c7d64] | 76 | extern char *wstr_to_astr(const wchar_t *src);
|
---|
[da2bd08] | 77 | extern void str_to_wstr(wchar_t *dest, size_t dlen, const char *src);
|
---|
[f2b8cdc] | 78 |
|
---|
[dd2cfa7] | 79 | extern char *str_chr(const char *str, wchar_t ch);
|
---|
| 80 | extern char *str_rchr(const char *str, wchar_t ch);
|
---|
[f2b8cdc] | 81 |
|
---|
[d4a3ee5] | 82 | extern bool wstr_linsert(wchar_t *str, wchar_t ch, size_t pos, size_t max_pos);
|
---|
| 83 | extern bool wstr_remove(wchar_t *str, size_t pos);
|
---|
[f2b8cdc] | 84 |
|
---|
[095003a8] | 85 | extern char *str_dup(const char *);
|
---|
[fc6dd18] | 86 | extern char *str_ndup(const char *, size_t max_size);
|
---|
[095003a8] | 87 |
|
---|
[d47279b] | 88 | extern int str_uint64(const char *, char **, unsigned int, bool, uint64_t *);
|
---|
| 89 | extern int str_size_t(const char *, char **, unsigned int, bool, size_t *);
|
---|
| 90 |
|
---|
[e535eeb] | 91 | extern void order_suffix(const uint64_t val, uint64_t *rv, char *suffix);
|
---|
| 92 |
|
---|
[f2b8cdc] | 93 | /*
|
---|
| 94 | * TODO: Get rid of this.
|
---|
| 95 | */
|
---|
[c9857c6] | 96 |
|
---|
[2dd7288] | 97 | extern int stricmp(const char *, const char *);
|
---|
[c0535f80] | 98 |
|
---|
[1526594c] | 99 | extern long int strtol(const char *, char **, int);
|
---|
| 100 | extern unsigned long strtoul(const char *, char **, int);
|
---|
[c9857c6] | 101 |
|
---|
[69df837f] | 102 | extern char * strtok_r(char *, const char *, char **);
|
---|
| 103 | extern char * strtok(char *, const char *);
|
---|
| 104 |
|
---|
[7ad3c2f] | 105 | #endif
|
---|
[b2951e2] | 106 |
|
---|
[fadd381] | 107 | /** @}
|
---|
[b2951e2] | 108 | */
|
---|