[7ad3c2f] | 1 | /*
|
---|
[df4ed85] | 2 | * Copyright (c) 2005 Martin Decky
|
---|
[c4bbca8] | 3 | * Copyright (c) 2011 Oleg Romanenko
|
---|
[7ad3c2f] | 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 |
|
---|
[fadd381] | 30 | /** @addtogroup libc
|
---|
[b2951e2] | 31 | * @{
|
---|
| 32 | */
|
---|
| 33 | /** @file
|
---|
| 34 | */
|
---|
| 35 |
|
---|
[19f857a] | 36 | #ifndef LIBC_STR_H_
|
---|
| 37 | #define LIBC_STR_H_
|
---|
[7ad3c2f] | 38 |
|
---|
[e64c4b2] | 39 | #include <mem.h>
|
---|
[5d4e90f0] | 40 | #include <sys/types.h>
|
---|
[3e6a98c5] | 41 | #include <stdbool.h>
|
---|
[171f9a1] | 42 |
|
---|
[d4a3ee5] | 43 | #define U_SPECIAL '?'
|
---|
[171f9a1] | 44 |
|
---|
[54a6ff6] | 45 | /** No size limit constant */
|
---|
[f2b8cdc] | 46 | #define STR_NO_LIMIT ((size_t) -1)
|
---|
| 47 |
|
---|
[54a6ff6] | 48 | /** Maximum size of a string containing @c length characters */
|
---|
[92fd52d7] | 49 | #define STR_BOUNDS(length) ((length) << 2)
|
---|
[f2b8cdc] | 50 |
|
---|
[dcb74c0a] | 51 | /**
|
---|
| 52 | * Maximum size of a buffer needed to a string converted from space-padded
|
---|
| 53 | * ASCII of size @a spa_size using spascii_to_str().
|
---|
| 54 | */
|
---|
| 55 | #define SPASCII_STR_BUFSIZE(spa_size) ((spa_size) + 1)
|
---|
| 56 |
|
---|
[171f9a1] | 57 | extern wchar_t str_decode(const char *str, size_t *offset, size_t sz);
|
---|
[568693b] | 58 | extern wchar_t str_decode_reverse(const char *str, size_t *offset, size_t sz);
|
---|
[171f9a1] | 59 | extern int chr_encode(const wchar_t ch, char *str, size_t *offset, size_t sz);
|
---|
| 60 |
|
---|
[f2b8cdc] | 61 | extern size_t str_size(const char *str);
|
---|
| 62 | extern size_t wstr_size(const wchar_t *str);
|
---|
| 63 |
|
---|
[560d79f] | 64 | extern size_t str_nsize(const char *str, size_t max_size);
|
---|
| 65 | extern size_t wstr_nsize(const wchar_t *str, size_t max_size);
|
---|
| 66 |
|
---|
[d4a3ee5] | 67 | extern size_t str_lsize(const char *str, size_t max_len);
|
---|
| 68 | extern size_t wstr_lsize(const wchar_t *str, size_t max_len);
|
---|
[f2b8cdc] | 69 |
|
---|
[d4a3ee5] | 70 | extern size_t str_length(const char *str);
|
---|
| 71 | extern size_t wstr_length(const wchar_t *wstr);
|
---|
[f2b8cdc] | 72 |
|
---|
[d4a3ee5] | 73 | extern size_t str_nlength(const char *str, size_t size);
|
---|
| 74 | extern size_t wstr_nlength(const wchar_t *str, size_t size);
|
---|
[f2b8cdc] | 75 |
|
---|
[be2a38ad] | 76 | extern size_t chr_width(wchar_t ch);
|
---|
| 77 | extern size_t str_width(const char *str);
|
---|
| 78 |
|
---|
[f2b8cdc] | 79 | extern bool ascii_check(wchar_t ch);
|
---|
| 80 | extern bool chr_check(wchar_t ch);
|
---|
| 81 |
|
---|
| 82 | extern int str_cmp(const char *s1, const char *s2);
|
---|
[d4a3ee5] | 83 | extern int str_lcmp(const char *s1, const char *s2, size_t max_len);
|
---|
[f2b8cdc] | 84 |
|
---|
[dce39b4] | 85 | extern bool str_test_prefix(const char *s, const char *p);
|
---|
| 86 |
|
---|
[6eb2e96] | 87 | extern void str_cpy(char *dest, size_t size, const char *src);
|
---|
| 88 | extern void str_ncpy(char *dest, size_t size, const char *src, size_t n);
|
---|
[4482bc7] | 89 | extern void str_append(char *dest, size_t size, const char *src);
|
---|
[6eb2e96] | 90 |
|
---|
[dcb74c0a] | 91 | extern int spascii_to_str(char *dest, size_t size, const uint8_t *src, size_t n);
|
---|
[81e9cb3] | 92 | extern void wstr_to_str(char *dest, size_t size, const wchar_t *src);
|
---|
[b67c7d64] | 93 | extern char *wstr_to_astr(const wchar_t *src);
|
---|
[81e9cb3] | 94 | extern void str_to_wstr(wchar_t *dest, size_t dlen, const char *src);
|
---|
[22cf42d9] | 95 | extern wchar_t *str_to_awstr(const char *src);
|
---|
[82374b2] | 96 | extern int utf16_to_str(char *dest, size_t size, const uint16_t *src);
|
---|
[fc97128] | 97 | extern int str_to_utf16(uint16_t *dest, size_t size, const char *src);
|
---|
[f2b8cdc] | 98 |
|
---|
[dd2cfa7] | 99 | extern char *str_chr(const char *str, wchar_t ch);
|
---|
| 100 | extern char *str_rchr(const char *str, wchar_t ch);
|
---|
[f2b8cdc] | 101 |
|
---|
[1737bfb] | 102 | extern void str_rtrim(char *str, wchar_t ch);
|
---|
| 103 | extern void str_ltrim(char *str, wchar_t ch);
|
---|
| 104 |
|
---|
[d4a3ee5] | 105 | extern bool wstr_linsert(wchar_t *str, wchar_t ch, size_t pos, size_t max_pos);
|
---|
| 106 | extern bool wstr_remove(wchar_t *str, size_t pos);
|
---|
[f2b8cdc] | 107 |
|
---|
[095003a8] | 108 | extern char *str_dup(const char *);
|
---|
[fc6dd18] | 109 | extern char *str_ndup(const char *, size_t max_size);
|
---|
[095003a8] | 110 |
|
---|
[ee3f6f6] | 111 | extern char *str_tok(char *, const char *, char **);
|
---|
| 112 |
|
---|
[b49d872] | 113 | extern int str_uint8_t(const char *, const char **, unsigned int, bool,
|
---|
| 114 | uint8_t *);
|
---|
| 115 | extern int str_uint16_t(const char *, const char **, unsigned int, bool,
|
---|
| 116 | uint16_t *);
|
---|
| 117 | extern int str_uint32_t(const char *, const char **, unsigned int, bool,
|
---|
| 118 | uint32_t *);
|
---|
| 119 | extern int str_uint64_t(const char *, const char **, unsigned int, bool,
|
---|
| 120 | uint64_t *);
|
---|
| 121 | extern int str_size_t(const char *, const char **, unsigned int, bool,
|
---|
| 122 | size_t *);
|
---|
[d47279b] | 123 |
|
---|
[933cadf] | 124 | extern void order_suffix(const uint64_t, uint64_t *, char *);
|
---|
| 125 | extern void bin_order_suffix(const uint64_t, uint64_t *, const char **, bool);
|
---|
[e535eeb] | 126 |
|
---|
[f2b8cdc] | 127 | /*
|
---|
| 128 | * TODO: Get rid of this.
|
---|
| 129 | */
|
---|
[c9857c6] | 130 |
|
---|
[2dd7288] | 131 | extern int stricmp(const char *, const char *);
|
---|
[c0535f80] | 132 |
|
---|
[1526594c] | 133 | extern long int strtol(const char *, char **, int);
|
---|
| 134 | extern unsigned long strtoul(const char *, char **, int);
|
---|
[c9857c6] | 135 |
|
---|
[7ad3c2f] | 136 | #endif
|
---|
[b2951e2] | 137 |
|
---|
[fadd381] | 138 | /** @}
|
---|
[b2951e2] | 139 | */
|
---|