Thu, 29 May 2025 14:41:02 +0200
add missing UIEXPORT to arg wrapper functions
| 174 | 1 | /* |
| 2 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. | |
| 3 | * | |
| 4 | * Copyright 2021 Mike Becker, Olaf Wintermann 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 are met: | |
| 8 | * | |
| 9 | * 1. Redistributions of source code must retain the above copyright | |
| 10 | * notice, this list of conditions and the following disclaimer. | |
| 11 | * | |
| 12 | * 2. 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 | * | |
| 16 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | |
| 17 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
| 18 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
| 19 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE | |
| 20 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | |
| 21 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | |
| 22 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | |
| 23 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | |
| 24 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | |
| 25 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
| 26 | * POSSIBILITY OF SUCH DAMAGE. | |
| 27 | */ | |
| 28 | /** | |
| 440 | 29 | * @file string.h |
| 30 | * @brief Strings that know their length. | |
| 31 | * @author Mike Becker | |
| 32 | * @author Olaf Wintermann | |
| 33 | * @copyright 2-Clause BSD License | |
| 174 | 34 | */ |
| 35 | ||
| 36 | #ifndef UCX_STRING_H | |
| 37 | #define UCX_STRING_H | |
| 38 | ||
| 39 | #include "common.h" | |
| 40 | #include "allocator.h" | |
| 41 | ||
| 42 | /** | |
|
253
087cc9216f28
initial newapi GTK port
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
174
diff
changeset
|
43 | * The maximum length of the "needle" in cx_strstr() that can use SBO. |
|
087cc9216f28
initial newapi GTK port
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
174
diff
changeset
|
44 | */ |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
45 | cx_attr_export |
| 440 | 46 | extern const unsigned cx_strstr_sbo_size; |
|
253
087cc9216f28
initial newapi GTK port
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
174
diff
changeset
|
47 | |
|
087cc9216f28
initial newapi GTK port
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
174
diff
changeset
|
48 | /** |
| 174 | 49 | * The UCX string structure. |
| 50 | */ | |
| 51 | struct cx_mutstr_s { | |
| 52 | /** | |
| 53 | * A pointer to the string. | |
| 440 | 54 | * @note The string is not necessarily @c NULL terminated. |
| 174 | 55 | */ |
| 56 | char *ptr; | |
| 57 | /** The length of the string */ | |
| 58 | size_t length; | |
| 59 | }; | |
| 60 | ||
| 61 | /** | |
| 62 | * A mutable string. | |
| 63 | */ | |
| 64 | typedef struct cx_mutstr_s cxmutstr; | |
| 65 | ||
| 66 | /** | |
| 67 | * The UCX string structure for immutable (constant) strings. | |
| 68 | */ | |
| 69 | struct cx_string_s { | |
| 70 | /** | |
| 71 | * A pointer to the immutable string. | |
| 440 | 72 | * @note The string is not necessarily @c NULL terminated. |
| 174 | 73 | */ |
| 324 | 74 | const char *ptr; |
| 174 | 75 | /** The length of the string */ |
| 76 | size_t length; | |
| 77 | }; | |
| 78 | ||
| 79 | /** | |
| 80 | * An immutable string. | |
| 81 | */ | |
| 82 | typedef struct cx_string_s cxstring; | |
| 83 | ||
| 84 | /** | |
| 85 | * Context for string tokenizing. | |
| 86 | */ | |
| 87 | struct cx_strtok_ctx_s { | |
| 88 | /** | |
| 89 | * The string to tokenize. | |
| 90 | */ | |
| 91 | cxstring str; | |
| 92 | /** | |
| 93 | * The primary delimiter. | |
| 94 | */ | |
| 95 | cxstring delim; | |
| 96 | /** | |
| 97 | * Optional array of more delimiters. | |
| 98 | */ | |
| 324 | 99 | const cxstring *delim_more; |
| 174 | 100 | /** |
| 101 | * Length of the array containing more delimiters. | |
| 102 | */ | |
| 103 | size_t delim_more_count; | |
| 104 | /** | |
| 105 | * Position of the currently active token in the source string. | |
| 106 | */ | |
| 107 | size_t pos; | |
| 108 | /** | |
| 109 | * Position of next delimiter in the source string. | |
| 110 | * | |
| 111 | * If the tokenizer has not yet returned a token, the content of this field | |
| 112 | * is undefined. If the tokenizer reached the end of the string, this field | |
| 113 | * contains the length of the source string. | |
| 114 | */ | |
| 115 | size_t delim_pos; | |
| 116 | /** | |
| 117 | * The position of the next token in the source string. | |
| 118 | */ | |
| 119 | size_t next_pos; | |
| 120 | /** | |
| 121 | * The number of already found tokens. | |
| 122 | */ | |
| 123 | size_t found; | |
| 124 | /** | |
| 125 | * The maximum number of tokens that shall be returned. | |
| 126 | */ | |
| 127 | size_t limit; | |
| 128 | }; | |
| 129 | ||
| 130 | /** | |
| 131 | * A string tokenizing context. | |
| 132 | */ | |
| 133 | typedef struct cx_strtok_ctx_s CxStrtokCtx; | |
| 134 | ||
| 135 | #ifdef __cplusplus | |
| 136 | extern "C" { | |
| 137 | ||
| 138 | /** | |
| 139 | * A literal initializer for an UCX string structure. | |
| 140 | * | |
| 141 | * @param literal the string literal | |
| 142 | */ | |
| 143 | #define CX_STR(literal) cxstring{literal, sizeof(literal) - 1} | |
| 144 | ||
| 145 | #else // __cplusplus | |
| 146 | ||
| 147 | /** | |
| 148 | * A literal initializer for an UCX string structure. | |
| 149 | * | |
| 440 | 150 | * The argument MUST be a string (const char*) @em literal. |
| 174 | 151 | * |
| 152 | * @param literal the string literal | |
| 153 | */ | |
| 154 | #define CX_STR(literal) (cxstring){literal, sizeof(literal) - 1} | |
| 155 | ||
| 156 | #endif | |
| 157 | ||
| 158 | ||
| 159 | /** | |
| 160 | * Wraps a mutable string that must be zero-terminated. | |
| 161 | * | |
| 440 | 162 | * The length is implicitly inferred by using a call to @c strlen(). |
| 174 | 163 | * |
| 440 | 164 | * @note the wrapped string will share the specified pointer to the string. |
| 174 | 165 | * If you do want a copy, use cx_strdup() on the return value of this function. |
| 166 | * | |
| 167 | * If you need to wrap a constant string, use cx_str(). | |
| 168 | * | |
| 169 | * @param cstring the string to wrap, must be zero-terminated | |
| 170 | * @return the wrapped string | |
| 171 | * | |
| 172 | * @see cx_mutstrn() | |
| 173 | */ | |
| 440 | 174 | cx_attr_nonnull |
| 175 | cx_attr_nodiscard | |
| 176 | cx_attr_cstr_arg(1) | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
177 | cx_attr_export |
| 174 | 178 | cxmutstr cx_mutstr(char *cstring); |
| 179 | ||
| 180 | /** | |
| 181 | * Wraps a string that does not need to be zero-terminated. | |
| 182 | * | |
| 440 | 183 | * The argument may be @c NULL if the length is zero. |
| 174 | 184 | * |
| 440 | 185 | * @note the wrapped string will share the specified pointer to the string. |
| 174 | 186 | * If you do want a copy, use cx_strdup() on the return value of this function. |
| 187 | * | |
| 188 | * If you need to wrap a constant string, use cx_strn(). | |
| 189 | * | |
| 440 | 190 | * @param cstring the string to wrap (or @c NULL, only if the length is zero) |
| 174 | 191 | * @param length the length of the string |
| 192 | * @return the wrapped string | |
| 193 | * | |
| 194 | * @see cx_mutstr() | |
| 195 | */ | |
| 440 | 196 | cx_attr_nodiscard |
| 197 | cx_attr_access_rw(1, 2) | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
198 | cx_attr_export |
| 174 | 199 | cxmutstr cx_mutstrn( |
| 200 | char *cstring, | |
| 201 | size_t length | |
| 202 | ); | |
| 203 | ||
| 204 | /** | |
| 205 | * Wraps a string that must be zero-terminated. | |
| 206 | * | |
| 440 | 207 | * The length is implicitly inferred by using a call to @c strlen(). |
| 174 | 208 | * |
| 440 | 209 | * @note the wrapped string will share the specified pointer to the string. |
| 174 | 210 | * If you do want a copy, use cx_strdup() on the return value of this function. |
| 211 | * | |
| 212 | * If you need to wrap a non-constant string, use cx_mutstr(). | |
| 213 | * | |
| 214 | * @param cstring the string to wrap, must be zero-terminated | |
| 215 | * @return the wrapped string | |
| 216 | * | |
| 217 | * @see cx_strn() | |
| 218 | */ | |
| 440 | 219 | cx_attr_nonnull |
| 220 | cx_attr_nodiscard | |
| 221 | cx_attr_cstr_arg(1) | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
222 | cx_attr_export |
| 324 | 223 | cxstring cx_str(const char *cstring); |
| 174 | 224 | |
| 225 | ||
| 226 | /** | |
| 227 | * Wraps a string that does not need to be zero-terminated. | |
| 228 | * | |
| 440 | 229 | * The argument may be @c NULL if the length is zero. |
| 174 | 230 | * |
| 440 | 231 | * @note the wrapped string will share the specified pointer to the string. |
| 174 | 232 | * If you do want a copy, use cx_strdup() on the return value of this function. |
| 233 | * | |
| 234 | * If you need to wrap a non-constant string, use cx_mutstrn(). | |
| 235 | * | |
| 440 | 236 | * @param cstring the string to wrap (or @c NULL, only if the length is zero) |
| 174 | 237 | * @param length the length of the string |
| 238 | * @return the wrapped string | |
| 239 | * | |
| 240 | * @see cx_str() | |
| 241 | */ | |
| 440 | 242 | cx_attr_nodiscard |
| 243 | cx_attr_access_r(1, 2) | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
244 | cx_attr_export |
| 174 | 245 | cxstring cx_strn( |
| 324 | 246 | const char *cstring, |
| 174 | 247 | size_t length |
| 248 | ); | |
| 249 | ||
| 440 | 250 | #ifdef __cplusplus |
| 251 | } // extern "C" | |
| 252 | cx_attr_nodiscard | |
| 253 | static inline cxstring cx_strcast(cxmutstr str) { | |
| 254 | return cx_strn(str.ptr, str.length); | |
| 255 | } | |
| 256 | cx_attr_nodiscard | |
| 257 | static inline cxstring cx_strcast(cxstring str) { | |
| 258 | return str; | |
| 259 | } | |
| 260 | extern "C" { | |
| 261 | #else | |
| 262 | /** | |
| 263 | * Internal function, do not use. | |
| 264 | * @param str | |
| 265 | * @return | |
| 266 | * @see cx_strcast() | |
| 267 | */ | |
| 268 | cx_attr_nodiscard | |
| 269 | static inline cxstring cx_strcast_m(cxmutstr str) { | |
| 270 | return (cxstring) {str.ptr, str.length}; | |
| 271 | } | |
| 272 | /** | |
| 273 | * Internal function, do not use. | |
| 274 | * @param str | |
| 275 | * @return | |
| 276 | * @see cx_strcast() | |
| 277 | */ | |
| 278 | cx_attr_nodiscard | |
| 279 | static inline cxstring cx_strcast_c(cxstring str) { | |
| 280 | return str; | |
| 281 | } | |
| 282 | ||
| 174 | 283 | /** |
| 284 | * Casts a mutable string to an immutable string. | |
| 285 | * | |
| 440 | 286 | * Does nothing for already immutable strings. |
| 287 | * | |
| 288 | * @note This is not seriously a cast. Instead, you get a copy | |
| 174 | 289 | * of the struct with the desired pointer type. Both structs still |
| 290 | * point to the same location, though! | |
| 291 | * | |
| 440 | 292 | * @param str (@c cxstring or @c cxmutstr) the string to cast |
| 293 | * @return (@c cxstring) an immutable copy of the string pointer | |
| 174 | 294 | */ |
| 440 | 295 | #define cx_strcast(str) _Generic((str), \ |
| 296 | cxmutstr: cx_strcast_m, \ | |
| 297 | cxstring: cx_strcast_c) \ | |
| 298 | (str) | |
| 299 | #endif | |
| 174 | 300 | |
| 301 | /** | |
| 440 | 302 | * Passes the pointer in this string to @c free(). |
| 174 | 303 | * |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
304 | * The pointer in the struct is set to @c NULL and the length is set to zero |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
305 | * which means that this function protects you against double-free. |
| 174 | 306 | * |
| 440 | 307 | * @note There is no implementation for cxstring, because it is unlikely that |
| 324 | 308 | * you ever have a <code>const char*</code> you are really supposed to free. |
| 309 | * If you encounter such situation, you should double-check your code. | |
| 174 | 310 | * |
| 311 | * @param str the string to free | |
| 312 | */ | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
313 | cx_attr_export |
| 174 | 314 | void cx_strfree(cxmutstr *str); |
| 315 | ||
| 316 | /** | |
| 317 | * Passes the pointer in this string to the allocators free function. | |
| 318 | * | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
319 | * The pointer in the struct is set to @c NULL and the length is set to zero |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
320 | * which means that this function protects you against double-free. |
| 174 | 321 | * |
| 440 | 322 | * @note There is no implementation for cxstring, because it is unlikely that |
| 324 | 323 | * you ever have a <code>const char*</code> you are really supposed to free. |
| 324 | * If you encounter such situation, you should double-check your code. | |
| 174 | 325 | * |
| 326 | * @param alloc the allocator | |
| 327 | * @param str the string to free | |
| 328 | */ | |
| 440 | 329 | cx_attr_nonnull_arg(1) |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
330 | cx_attr_export |
| 174 | 331 | void cx_strfree_a( |
| 324 | 332 | const CxAllocator *alloc, |
| 174 | 333 | cxmutstr *str |
| 334 | ); | |
| 335 | ||
| 336 | /** | |
| 337 | * Returns the accumulated length of all specified strings. | |
| 440 | 338 | * |
| 339 | * If this sum overflows, errno is set to EOVERFLOW. | |
| 174 | 340 | * |
| 440 | 341 | * @attention if the count argument is larger than the number of the |
| 174 | 342 | * specified strings, the behavior is undefined. |
| 343 | * | |
| 344 | * @param count the total number of specified strings | |
| 345 | * @param ... all strings | |
| 346 | * @return the accumulated length of all strings | |
| 347 | */ | |
| 440 | 348 | cx_attr_nodiscard |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
349 | cx_attr_export |
| 174 | 350 | size_t cx_strlen( |
| 351 | size_t count, | |
| 352 | ... | |
| 353 | ); | |
| 354 | ||
| 355 | /** | |
| 356 | * Concatenates strings. | |
| 357 | * | |
| 358 | * The resulting string will be allocated by the specified allocator. | |
| 440 | 359 | * So developers @em must pass the return value to cx_strfree_a() eventually. |
| 174 | 360 | * |
| 440 | 361 | * If @p str already contains a string, the memory will be reallocated and |
| 174 | 362 | * the other strings are appended. Otherwise, new memory is allocated. |
| 363 | * | |
| 440 | 364 | * If memory allocation fails, the pointer in the returned string will |
| 365 | * be @c NULL. Depending on the allocator, @c errno might be set. | |
| 366 | * | |
| 367 | * @note It is guaranteed that there is only one allocation for the | |
| 368 | * resulting string. | |
| 174 | 369 | * It is also guaranteed that the returned string is zero-terminated. |
| 370 | * | |
| 371 | * @param alloc the allocator to use | |
| 372 | * @param str the string the other strings shall be concatenated to | |
| 373 | * @param count the number of the other following strings to concatenate | |
| 440 | 374 | * @param ... all other UCX strings |
| 174 | 375 | * @return the concatenated string |
| 376 | */ | |
| 440 | 377 | cx_attr_nodiscard |
| 378 | cx_attr_nonnull | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
379 | cx_attr_export |
| 174 | 380 | cxmutstr cx_strcat_ma( |
| 324 | 381 | const CxAllocator *alloc, |
| 174 | 382 | cxmutstr str, |
| 383 | size_t count, | |
| 384 | ... | |
| 385 | ); | |
| 386 | ||
| 387 | /** | |
| 388 | * Concatenates strings and returns a new string. | |
| 389 | * | |
| 390 | * The resulting string will be allocated by the specified allocator. | |
| 440 | 391 | * So developers @em must pass the return value to cx_strfree_a() eventually. |
| 174 | 392 | * |
| 440 | 393 | * If memory allocation fails, the pointer in the returned string will |
| 394 | * be @c NULL. Depending on the allocator, @c errno might be set. | |
| 395 | * | |
| 396 | * @note It is guaranteed that there is only one allocation for the | |
| 397 | * resulting string. | |
| 174 | 398 | * It is also guaranteed that the returned string is zero-terminated. |
| 399 | * | |
| 440 | 400 | * @param alloc (@c CxAllocator*) the allocator to use |
| 401 | * @param count (@c size_t) the number of the other following strings to concatenate | |
| 402 | * @param ... all other UCX strings | |
| 403 | * @return (@c cxmutstr) the concatenated string | |
| 174 | 404 | */ |
| 405 | #define cx_strcat_a(alloc, count, ...) \ | |
| 406 | cx_strcat_ma(alloc, cx_mutstrn(NULL, 0), count, __VA_ARGS__) | |
| 407 | ||
| 408 | /** | |
| 409 | * Concatenates strings and returns a new string. | |
| 410 | * | |
| 440 | 411 | * The resulting string will be allocated by standard @c malloc(). |
| 412 | * So developers @em must pass the return value to cx_strfree() eventually. | |
| 174 | 413 | * |
| 440 | 414 | * If memory allocation fails, the pointer in the returned string will |
| 415 | * be @c NULL and @c errno might be set. | |
| 416 | * | |
| 417 | * @note It is guaranteed that there is only one allocation for the | |
| 418 | * resulting string. | |
| 174 | 419 | * It is also guaranteed that the returned string is zero-terminated. |
| 420 | * | |
| 440 | 421 | * @param count (@c size_t) the number of the other following strings to concatenate |
| 422 | * @param ... all other UCX strings | |
| 423 | * @return (@c cxmutstr) the concatenated string | |
| 174 | 424 | */ |
| 425 | #define cx_strcat(count, ...) \ | |
| 426 | cx_strcat_ma(cxDefaultAllocator, cx_mutstrn(NULL, 0), count, __VA_ARGS__) | |
| 427 | ||
| 428 | /** | |
| 429 | * Concatenates strings. | |
| 430 | * | |
| 440 | 431 | * The resulting string will be allocated by standard @c malloc(). |
| 432 | * So developers @em must pass the return value to cx_strfree() eventually. | |
| 174 | 433 | * |
| 440 | 434 | * If @p str already contains a string, the memory will be reallocated and |
| 174 | 435 | * the other strings are appended. Otherwise, new memory is allocated. |
| 436 | * | |
| 440 | 437 | * If memory allocation fails, the pointer in the returned string will |
| 438 | * be @c NULL and @c errno might be set. | |
| 439 | * | |
| 440 | * @note It is guaranteed that there is only one allocation for the | |
| 441 | * resulting string. | |
| 174 | 442 | * It is also guaranteed that the returned string is zero-terminated. |
| 443 | * | |
| 440 | 444 | * @param str (@c cxmutstr) the string the other strings shall be concatenated to |
| 445 | * @param count (@c size_t) the number of the other following strings to concatenate | |
| 446 | * @param ... all other strings | |
| 447 | * @return (@c cxmutstr) the concatenated string | |
| 174 | 448 | */ |
| 449 | #define cx_strcat_m(str, count, ...) \ | |
| 450 | cx_strcat_ma(cxDefaultAllocator, str, count, __VA_ARGS__) | |
| 451 | ||
| 452 | /** | |
| 453 | * Returns a substring starting at the specified location. | |
| 454 | * | |
| 440 | 455 | * @attention the new string references the same memory area as the |
| 456 | * input string and is usually @em not zero-terminated. | |
| 174 | 457 | * Use cx_strdup() to get a copy. |
| 458 | * | |
| 459 | * @param string input string | |
| 460 | * @param start start location of the substring | |
| 440 | 461 | * @return a substring of @p string starting at @p start |
| 174 | 462 | * |
| 463 | * @see cx_strsubsl() | |
| 464 | * @see cx_strsubs_m() | |
| 465 | * @see cx_strsubsl_m() | |
| 466 | */ | |
| 440 | 467 | cx_attr_nodiscard |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
468 | cx_attr_export |
| 174 | 469 | cxstring cx_strsubs( |
| 470 | cxstring string, | |
| 471 | size_t start | |
| 472 | ); | |
| 473 | ||
| 474 | /** | |
| 475 | * Returns a substring starting at the specified location. | |
| 476 | * | |
| 440 | 477 | * The returned string will be limited to @p length bytes or the number |
| 478 | * of bytes available in @p string, whichever is smaller. | |
| 174 | 479 | * |
| 440 | 480 | * @attention the new string references the same memory area as the |
| 481 | * input string and is usually @em not zero-terminated. | |
| 174 | 482 | * Use cx_strdup() to get a copy. |
| 483 | * | |
| 484 | * @param string input string | |
| 485 | * @param start start location of the substring | |
| 486 | * @param length the maximum length of the returned string | |
| 440 | 487 | * @return a substring of @p string starting at @p start |
| 174 | 488 | * |
| 489 | * @see cx_strsubs() | |
| 490 | * @see cx_strsubs_m() | |
| 491 | * @see cx_strsubsl_m() | |
| 492 | */ | |
| 440 | 493 | cx_attr_nodiscard |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
494 | cx_attr_export |
| 174 | 495 | cxstring cx_strsubsl( |
| 496 | cxstring string, | |
| 497 | size_t start, | |
| 498 | size_t length | |
| 499 | ); | |
| 500 | ||
| 501 | /** | |
| 502 | * Returns a substring starting at the specified location. | |
| 503 | * | |
| 440 | 504 | * @attention the new string references the same memory area as the |
| 505 | * input string and is usually @em not zero-terminated. | |
| 174 | 506 | * Use cx_strdup() to get a copy. |
| 507 | * | |
| 508 | * @param string input string | |
| 509 | * @param start start location of the substring | |
| 440 | 510 | * @return a substring of @p string starting at @p start |
| 174 | 511 | * |
| 512 | * @see cx_strsubsl_m() | |
| 513 | * @see cx_strsubs() | |
| 514 | * @see cx_strsubsl() | |
| 515 | */ | |
| 440 | 516 | cx_attr_nodiscard |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
517 | cx_attr_export |
| 174 | 518 | cxmutstr cx_strsubs_m( |
| 519 | cxmutstr string, | |
| 520 | size_t start | |
| 521 | ); | |
| 522 | ||
| 523 | /** | |
| 524 | * Returns a substring starting at the specified location. | |
| 525 | * | |
| 440 | 526 | * The returned string will be limited to @p length bytes or the number |
| 527 | * of bytes available in @p string, whichever is smaller. | |
| 174 | 528 | * |
| 440 | 529 | * @attention the new string references the same memory area as the |
| 530 | * input string and is usually @em not zero-terminated. | |
| 174 | 531 | * Use cx_strdup() to get a copy. |
| 532 | * | |
| 533 | * @param string input string | |
| 534 | * @param start start location of the substring | |
| 535 | * @param length the maximum length of the returned string | |
| 440 | 536 | * @return a substring of @p string starting at @p start |
| 174 | 537 | * |
| 538 | * @see cx_strsubs_m() | |
| 539 | * @see cx_strsubs() | |
| 540 | * @see cx_strsubsl() | |
| 541 | */ | |
| 440 | 542 | cx_attr_nodiscard |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
543 | cx_attr_export |
| 174 | 544 | cxmutstr cx_strsubsl_m( |
| 545 | cxmutstr string, | |
| 546 | size_t start, | |
| 547 | size_t length | |
| 548 | ); | |
| 549 | ||
| 550 | /** | |
| 551 | * Returns a substring starting at the location of the first occurrence of the | |
| 552 | * specified character. | |
| 553 | * | |
| 554 | * If the string does not contain the character, an empty string is returned. | |
| 555 | * | |
| 556 | * @param string the string where to locate the character | |
| 557 | * @param chr the character to locate | |
| 440 | 558 | * @return a substring starting at the first location of @p chr |
| 174 | 559 | * |
| 560 | * @see cx_strchr_m() | |
| 561 | */ | |
| 440 | 562 | cx_attr_nodiscard |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
563 | cx_attr_export |
| 174 | 564 | cxstring cx_strchr( |
| 565 | cxstring string, | |
| 566 | int chr | |
| 567 | ); | |
| 568 | ||
| 569 | /** | |
| 570 | * Returns a substring starting at the location of the first occurrence of the | |
| 571 | * specified character. | |
| 572 | * | |
| 573 | * If the string does not contain the character, an empty string is returned. | |
| 574 | * | |
| 575 | * @param string the string where to locate the character | |
| 576 | * @param chr the character to locate | |
| 440 | 577 | * @return a substring starting at the first location of @p chr |
| 174 | 578 | * |
| 579 | * @see cx_strchr() | |
| 580 | */ | |
| 440 | 581 | cx_attr_nodiscard |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
582 | cx_attr_export |
| 174 | 583 | cxmutstr cx_strchr_m( |
| 584 | cxmutstr string, | |
| 585 | int chr | |
| 586 | ); | |
| 587 | ||
| 588 | /** | |
| 589 | * Returns a substring starting at the location of the last occurrence of the | |
| 590 | * specified character. | |
| 591 | * | |
| 592 | * If the string does not contain the character, an empty string is returned. | |
| 593 | * | |
| 594 | * @param string the string where to locate the character | |
| 595 | * @param chr the character to locate | |
| 440 | 596 | * @return a substring starting at the last location of @p chr |
| 174 | 597 | * |
| 598 | * @see cx_strrchr_m() | |
| 599 | */ | |
| 440 | 600 | cx_attr_nodiscard |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
601 | cx_attr_export |
| 174 | 602 | cxstring cx_strrchr( |
| 603 | cxstring string, | |
| 604 | int chr | |
| 605 | ); | |
| 606 | ||
| 607 | /** | |
| 608 | * Returns a substring starting at the location of the last occurrence of the | |
| 609 | * specified character. | |
| 610 | * | |
| 611 | * If the string does not contain the character, an empty string is returned. | |
| 612 | * | |
| 613 | * @param string the string where to locate the character | |
| 614 | * @param chr the character to locate | |
| 440 | 615 | * @return a substring starting at the last location of @p chr |
| 174 | 616 | * |
| 617 | * @see cx_strrchr() | |
| 618 | */ | |
| 440 | 619 | cx_attr_nodiscard |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
620 | cx_attr_export |
| 174 | 621 | cxmutstr cx_strrchr_m( |
| 622 | cxmutstr string, | |
| 623 | int chr | |
| 624 | ); | |
| 625 | ||
| 626 | /** | |
| 627 | * Returns a substring starting at the location of the first occurrence of the | |
| 628 | * specified string. | |
| 629 | * | |
| 440 | 630 | * If @p haystack does not contain @p needle, an empty string is returned. |
| 174 | 631 | * |
| 440 | 632 | * If @p needle is an empty string, the complete @p haystack is |
| 174 | 633 | * returned. |
| 634 | * | |
| 635 | * @param haystack the string to be scanned | |
| 636 | * @param needle string containing the sequence of characters to match | |
| 637 | * @return a substring starting at the first occurrence of | |
| 440 | 638 | * @p needle, or an empty string, if the sequence is not |
| 174 | 639 | * contained |
| 640 | * @see cx_strstr_m() | |
| 641 | */ | |
| 440 | 642 | cx_attr_nodiscard |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
643 | cx_attr_export |
| 174 | 644 | cxstring cx_strstr( |
| 645 | cxstring haystack, | |
| 646 | cxstring needle | |
| 647 | ); | |
| 648 | ||
| 649 | /** | |
| 650 | * Returns a substring starting at the location of the first occurrence of the | |
| 651 | * specified string. | |
| 652 | * | |
| 440 | 653 | * If @p haystack does not contain @p needle, an empty string is returned. |
| 174 | 654 | * |
| 440 | 655 | * If @p needle is an empty string, the complete @p haystack is |
| 174 | 656 | * returned. |
| 657 | * | |
| 658 | * @param haystack the string to be scanned | |
| 659 | * @param needle string containing the sequence of characters to match | |
| 660 | * @return a substring starting at the first occurrence of | |
| 440 | 661 | * @p needle, or an empty string, if the sequence is not |
| 174 | 662 | * contained |
| 663 | * @see cx_strstr() | |
| 664 | */ | |
| 440 | 665 | cx_attr_nodiscard |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
666 | cx_attr_export |
| 174 | 667 | cxmutstr cx_strstr_m( |
| 668 | cxmutstr haystack, | |
| 669 | cxstring needle | |
| 670 | ); | |
| 671 | ||
| 672 | /** | |
| 673 | * Splits a given string using a delimiter string. | |
| 674 | * | |
| 440 | 675 | * @note The resulting array contains strings that point to the source |
| 676 | * @p string. Use cx_strdup() to get copies. | |
| 174 | 677 | * |
| 678 | * @param string the string to split | |
| 679 | * @param delim the delimiter | |
| 680 | * @param limit the maximum number of split items | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
681 | * @param output a preallocated array of at least @p limit length |
| 174 | 682 | * @return the actual number of split items |
| 683 | */ | |
| 440 | 684 | cx_attr_nodiscard |
| 685 | cx_attr_nonnull | |
| 686 | cx_attr_access_w(4, 3) | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
687 | cx_attr_export |
| 174 | 688 | size_t cx_strsplit( |
| 689 | cxstring string, | |
| 690 | cxstring delim, | |
| 691 | size_t limit, | |
| 692 | cxstring *output | |
| 693 | ); | |
| 694 | ||
| 695 | /** | |
| 696 | * Splits a given string using a delimiter string. | |
| 697 | * | |
| 440 | 698 | * The array pointed to by @p output will be allocated by @p allocator. |
| 174 | 699 | * |
| 440 | 700 | * @note The resulting array contains strings that point to the source |
| 701 | * @p string. Use cx_strdup() to get copies. | |
| 174 | 702 | * |
| 440 | 703 | * @attention If allocation fails, the @c NULL pointer will be written to |
| 704 | * @p output and the number returned will be zero. | |
| 174 | 705 | * |
| 706 | * @param allocator the allocator to use for allocating the resulting array | |
| 707 | * @param string the string to split | |
| 708 | * @param delim the delimiter | |
| 709 | * @param limit the maximum number of split items | |
| 710 | * @param output a pointer where the address of the allocated array shall be | |
| 711 | * written to | |
| 712 | * @return the actual number of split items | |
| 713 | */ | |
| 440 | 714 | cx_attr_nodiscard |
| 715 | cx_attr_nonnull | |
| 716 | cx_attr_access_w(5) | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
717 | cx_attr_export |
| 174 | 718 | size_t cx_strsplit_a( |
| 324 | 719 | const CxAllocator *allocator, |
| 174 | 720 | cxstring string, |
| 721 | cxstring delim, | |
| 722 | size_t limit, | |
| 723 | cxstring **output | |
| 724 | ); | |
| 725 | ||
| 726 | ||
| 727 | /** | |
| 728 | * Splits a given string using a delimiter string. | |
| 729 | * | |
| 440 | 730 | * @note The resulting array contains strings that point to the source |
| 731 | * @p string. Use cx_strdup() to get copies. | |
| 174 | 732 | * |
| 733 | * @param string the string to split | |
| 734 | * @param delim the delimiter | |
| 735 | * @param limit the maximum number of split items | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
736 | * @param output a preallocated array of at least @p limit length |
| 174 | 737 | * @return the actual number of split items |
| 738 | */ | |
| 440 | 739 | cx_attr_nodiscard |
| 740 | cx_attr_nonnull | |
| 741 | cx_attr_access_w(4, 3) | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
742 | cx_attr_export |
| 174 | 743 | size_t cx_strsplit_m( |
| 744 | cxmutstr string, | |
| 745 | cxstring delim, | |
| 746 | size_t limit, | |
| 747 | cxmutstr *output | |
| 748 | ); | |
| 749 | ||
| 750 | /** | |
| 751 | * Splits a given string using a delimiter string. | |
| 752 | * | |
| 440 | 753 | * The array pointed to by @p output will be allocated by @p allocator. |
| 174 | 754 | * |
| 440 | 755 | * @note The resulting array contains strings that point to the source |
| 756 | * @p string. Use cx_strdup() to get copies. | |
| 174 | 757 | * |
| 440 | 758 | * @attention If allocation fails, the @c NULL pointer will be written to |
| 759 | * @p output and the number returned will be zero. | |
| 174 | 760 | * |
| 761 | * @param allocator the allocator to use for allocating the resulting array | |
| 762 | * @param string the string to split | |
| 763 | * @param delim the delimiter | |
| 764 | * @param limit the maximum number of split items | |
| 765 | * @param output a pointer where the address of the allocated array shall be | |
| 766 | * written to | |
| 767 | * @return the actual number of split items | |
| 768 | */ | |
| 440 | 769 | cx_attr_nodiscard |
| 770 | cx_attr_nonnull | |
| 771 | cx_attr_access_w(5) | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
772 | cx_attr_export |
| 174 | 773 | size_t cx_strsplit_ma( |
| 324 | 774 | const CxAllocator *allocator, |
| 174 | 775 | cxmutstr string, |
| 776 | cxstring delim, | |
| 777 | size_t limit, | |
| 778 | cxmutstr **output | |
| 779 | ); | |
| 780 | ||
| 781 | /** | |
| 782 | * Compares two strings. | |
| 783 | * | |
| 784 | * @param s1 the first string | |
| 785 | * @param s2 the second string | |
| 440 | 786 | * @return negative if @p s1 is smaller than @p s2, positive if @p s1 is larger |
| 787 | * than @p s2, zero if both strings equal | |
| 174 | 788 | */ |
| 440 | 789 | cx_attr_nodiscard |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
790 | cx_attr_export |
| 174 | 791 | int cx_strcmp( |
| 792 | cxstring s1, | |
| 793 | cxstring s2 | |
| 794 | ); | |
| 795 | ||
| 796 | /** | |
| 797 | * Compares two strings ignoring case. | |
| 798 | * | |
| 799 | * @param s1 the first string | |
| 800 | * @param s2 the second string | |
| 440 | 801 | * @return negative if @p s1 is smaller than @p s2, positive if @p s1 is larger |
| 802 | * than @p s2, zero if both strings equal ignoring case | |
| 174 | 803 | */ |
| 440 | 804 | cx_attr_nodiscard |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
805 | cx_attr_export |
| 174 | 806 | int cx_strcasecmp( |
| 807 | cxstring s1, | |
| 808 | cxstring s2 | |
| 809 | ); | |
| 810 | ||
| 811 | /** | |
| 812 | * Compares two strings. | |
| 813 | * | |
| 814 | * This function has a compatible signature for the use as a cx_compare_func. | |
| 815 | * | |
| 816 | * @param s1 the first string | |
| 817 | * @param s2 the second string | |
| 440 | 818 | * @return negative if @p s1 is smaller than @p s2, positive if @p s1 is larger |
| 819 | * than @p s2, zero if both strings equal | |
| 174 | 820 | */ |
| 440 | 821 | cx_attr_nodiscard |
| 822 | cx_attr_nonnull | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
823 | cx_attr_export |
| 174 | 824 | int cx_strcmp_p( |
| 324 | 825 | const void *s1, |
| 826 | const void *s2 | |
| 174 | 827 | ); |
| 828 | ||
| 829 | /** | |
| 830 | * Compares two strings ignoring case. | |
| 831 | * | |
| 832 | * This function has a compatible signature for the use as a cx_compare_func. | |
| 833 | * | |
| 834 | * @param s1 the first string | |
| 835 | * @param s2 the second string | |
| 440 | 836 | * @return negative if @p s1 is smaller than @p s2, positive if @p s1 is larger |
| 837 | * than @p s2, zero if both strings equal ignoring case | |
| 174 | 838 | */ |
| 440 | 839 | cx_attr_nodiscard |
| 840 | cx_attr_nonnull | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
841 | cx_attr_export |
| 174 | 842 | int cx_strcasecmp_p( |
| 324 | 843 | const void *s1, |
| 844 | const void *s2 | |
| 174 | 845 | ); |
| 846 | ||
| 847 | ||
| 848 | /** | |
| 849 | * Creates a duplicate of the specified string. | |
| 850 | * | |
| 440 | 851 | * The new string will contain a copy allocated by @p allocator. |
| 174 | 852 | * |
| 440 | 853 | * @note The returned string is guaranteed to be zero-terminated. |
| 174 | 854 | * |
| 855 | * @param allocator the allocator to use | |
| 856 | * @param string the string to duplicate | |
| 857 | * @return a duplicate of the string | |
| 858 | * @see cx_strdup() | |
| 859 | */ | |
| 440 | 860 | cx_attr_nodiscard |
| 861 | cx_attr_nonnull | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
862 | cx_attr_export |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
863 | cxmutstr cx_strdup_a_( |
| 324 | 864 | const CxAllocator *allocator, |
| 174 | 865 | cxstring string |
| 866 | ); | |
| 867 | ||
| 868 | /** | |
| 869 | * Creates a duplicate of the specified string. | |
| 870 | * | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
871 | * The new string will contain a copy allocated by @p allocator. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
872 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
873 | * @note The returned string is guaranteed to be zero-terminated. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
874 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
875 | * @param allocator (@c CxAllocator*) the allocator to use |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
876 | * @param string the string to duplicate |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
877 | * @return (@c cxmutstr) a duplicate of the string |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
878 | * @see cx_strdup() |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
879 | * @see cx_strfree_a() |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
880 | */ |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
881 | #define cx_strdup_a(allocator, string) \ |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
882 | cx_strdup_a_((allocator), cx_strcast((string))) |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
883 | |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
884 | /** |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
885 | * Creates a duplicate of the specified string. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
886 | * |
| 174 | 887 | * The new string will contain a copy allocated by standard |
| 440 | 888 | * @c malloc(). So developers @em must pass the return value to cx_strfree(). |
| 174 | 889 | * |
| 440 | 890 | * @note The returned string is guaranteed to be zero-terminated. |
| 174 | 891 | * |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
892 | * @param string the string to duplicate |
| 440 | 893 | * @return (@c cxmutstr) a duplicate of the string |
| 174 | 894 | * @see cx_strdup_a() |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
895 | * @see cx_strfree() |
| 174 | 896 | */ |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
897 | #define cx_strdup(string) cx_strdup_a_(cxDefaultAllocator, string) |
| 174 | 898 | |
| 899 | /** | |
| 900 | * Omits leading and trailing spaces. | |
| 901 | * | |
| 440 | 902 | * @note the returned string references the same memory, thus you |
| 903 | * must @em not free the returned memory. | |
| 174 | 904 | * |
| 905 | * @param string the string that shall be trimmed | |
| 906 | * @return the trimmed string | |
| 907 | */ | |
| 440 | 908 | cx_attr_nodiscard |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
909 | cx_attr_export |
| 174 | 910 | cxstring cx_strtrim(cxstring string); |
| 911 | ||
| 912 | /** | |
| 913 | * Omits leading and trailing spaces. | |
| 914 | * | |
| 440 | 915 | * @note the returned string references the same memory, thus you |
| 916 | * must @em not free the returned memory. | |
| 174 | 917 | * |
| 918 | * @param string the string that shall be trimmed | |
| 919 | * @return the trimmed string | |
| 920 | */ | |
| 440 | 921 | cx_attr_nodiscard |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
922 | cx_attr_export |
| 174 | 923 | cxmutstr cx_strtrim_m(cxmutstr string); |
| 924 | ||
| 925 | /** | |
| 926 | * Checks, if a string has a specific prefix. | |
| 927 | * | |
| 928 | * @param string the string to check | |
| 929 | * @param prefix the prefix the string should have | |
| 440 | 930 | * @return @c true, if and only if the string has the specified prefix, |
| 931 | * @c false otherwise | |
| 174 | 932 | */ |
| 440 | 933 | cx_attr_nodiscard |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
934 | cx_attr_export |
| 174 | 935 | bool cx_strprefix( |
| 936 | cxstring string, | |
| 937 | cxstring prefix | |
| 938 | ); | |
| 939 | ||
| 940 | /** | |
| 941 | * Checks, if a string has a specific suffix. | |
| 942 | * | |
| 943 | * @param string the string to check | |
| 944 | * @param suffix the suffix the string should have | |
| 440 | 945 | * @return @c true, if and only if the string has the specified suffix, |
| 946 | * @c false otherwise | |
| 174 | 947 | */ |
| 440 | 948 | cx_attr_nodiscard |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
949 | cx_attr_export |
| 174 | 950 | bool cx_strsuffix( |
| 951 | cxstring string, | |
| 952 | cxstring suffix | |
| 953 | ); | |
| 954 | ||
| 955 | /** | |
| 956 | * Checks, if a string has a specific prefix, ignoring the case. | |
| 957 | * | |
| 958 | * @param string the string to check | |
| 959 | * @param prefix the prefix the string should have | |
| 440 | 960 | * @return @c true, if and only if the string has the specified prefix, |
| 961 | * @c false otherwise | |
| 174 | 962 | */ |
| 440 | 963 | cx_attr_nodiscard |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
964 | cx_attr_export |
| 174 | 965 | bool cx_strcaseprefix( |
| 966 | cxstring string, | |
| 967 | cxstring prefix | |
| 968 | ); | |
| 969 | ||
| 970 | /** | |
| 971 | * Checks, if a string has a specific suffix, ignoring the case. | |
| 972 | * | |
| 973 | * @param string the string to check | |
| 974 | * @param suffix the suffix the string should have | |
| 440 | 975 | * @return @c true, if and only if the string has the specified suffix, |
| 976 | * @c false otherwise | |
| 174 | 977 | */ |
| 440 | 978 | cx_attr_nodiscard |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
979 | cx_attr_export |
| 174 | 980 | bool cx_strcasesuffix( |
| 981 | cxstring string, | |
| 982 | cxstring suffix | |
| 983 | ); | |
| 984 | ||
| 985 | /** | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
986 | * Replaces a string with another string. |
| 174 | 987 | * |
| 440 | 988 | * Replaces at most @p replmax occurrences. |
| 174 | 989 | * |
| 440 | 990 | * The returned string will be allocated by @p allocator and is guaranteed |
| 174 | 991 | * to be zero-terminated. |
| 992 | * | |
| 993 | * If allocation fails, or the input string is empty, | |
| 994 | * the returned string will be empty. | |
| 995 | * | |
| 996 | * @param allocator the allocator to use | |
| 997 | * @param str the string where replacements should be applied | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
998 | * @param search the string to search for |
| 174 | 999 | * @param replacement the replacement string |
| 1000 | * @param replmax maximum number of replacements | |
| 1001 | * @return the resulting string after applying the replacements | |
| 1002 | */ | |
| 440 | 1003 | cx_attr_nodiscard |
| 1004 | cx_attr_nonnull | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1005 | cx_attr_export |
| 174 | 1006 | cxmutstr cx_strreplacen_a( |
| 324 | 1007 | const CxAllocator *allocator, |
| 174 | 1008 | cxstring str, |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1009 | cxstring search, |
| 174 | 1010 | cxstring replacement, |
| 1011 | size_t replmax | |
| 1012 | ); | |
| 1013 | ||
| 1014 | /** | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1015 | * Replaces a string with another string. |
| 174 | 1016 | * |
| 440 | 1017 | * Replaces at most @p replmax occurrences. |
| 174 | 1018 | * |
| 440 | 1019 | * The returned string will be allocated by @c malloc() and is guaranteed |
| 174 | 1020 | * to be zero-terminated. |
| 1021 | * | |
| 1022 | * If allocation fails, or the input string is empty, | |
| 1023 | * the returned string will be empty. | |
| 1024 | * | |
| 440 | 1025 | * @param str (@c cxstring) the string where replacements should be applied |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1026 | * @param search (@c cxstring) the string to search for |
| 440 | 1027 | * @param replacement (@c cxstring) the replacement string |
| 1028 | * @param replmax (@c size_t) maximum number of replacements | |
| 1029 | * @return (@c cxmutstr) the resulting string after applying the replacements | |
| 174 | 1030 | */ |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1031 | #define cx_strreplacen(str, search, replacement, replmax) \ |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1032 | cx_strreplacen_a(cxDefaultAllocator, str, search, replacement, replmax) |
| 174 | 1033 | |
| 1034 | /** | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1035 | * Replaces a string with another string. |
| 174 | 1036 | * |
| 440 | 1037 | * The returned string will be allocated by @p allocator and is guaranteed |
| 174 | 1038 | * to be zero-terminated. |
| 1039 | * | |
| 1040 | * If allocation fails, or the input string is empty, | |
| 1041 | * the returned string will be empty. | |
| 1042 | * | |
| 440 | 1043 | * @param allocator (@c CxAllocator*) the allocator to use |
| 1044 | * @param str (@c cxstring) the string where replacements should be applied | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1045 | * @param search (@c cxstring) the string to search for |
| 440 | 1046 | * @param replacement (@c cxstring) the replacement string |
| 1047 | * @return (@c cxmutstr) the resulting string after applying the replacements | |
| 174 | 1048 | */ |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1049 | #define cx_strreplace_a(allocator, str, search, replacement) \ |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1050 | cx_strreplacen_a(allocator, str, search, replacement, SIZE_MAX) |
| 174 | 1051 | |
| 1052 | /** | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1053 | * Replaces a string with another string. |
| 174 | 1054 | * |
| 440 | 1055 | * The returned string will be allocated by @c malloc() and is guaranteed |
| 174 | 1056 | * to be zero-terminated. |
| 1057 | * | |
| 1058 | * If allocation fails, or the input string is empty, | |
| 1059 | * the returned string will be empty. | |
| 1060 | * | |
| 440 | 1061 | * @param str (@c cxstring) the string where replacements should be applied |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1062 | * @param search (@c cxstring) the string to search for |
| 440 | 1063 | * @param replacement (@c cxstring) the replacement string |
| 1064 | * @return (@c cxmutstr) the resulting string after applying the replacements | |
| 174 | 1065 | */ |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1066 | #define cx_strreplace(str, search, replacement) \ |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1067 | cx_strreplacen_a(cxDefaultAllocator, str, search, replacement, SIZE_MAX) |
| 174 | 1068 | |
| 1069 | /** | |
| 1070 | * Creates a string tokenization context. | |
| 1071 | * | |
| 1072 | * @param str the string to tokenize | |
| 1073 | * @param delim the delimiter (must not be empty) | |
| 1074 | * @param limit the maximum number of tokens that shall be returned | |
| 1075 | * @return a new string tokenization context | |
| 1076 | */ | |
| 440 | 1077 | cx_attr_nodiscard |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1078 | cx_attr_export |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1079 | CxStrtokCtx cx_strtok_( |
| 174 | 1080 | cxstring str, |
| 1081 | cxstring delim, | |
| 1082 | size_t limit | |
| 1083 | ); | |
| 1084 | ||
| 1085 | /** | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1086 | * Creates a string tokenization context. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1087 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1088 | * @param str the string to tokenize |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1089 | * @param delim the delimiter string (must not be empty) |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1090 | * @param limit (@c size_t) the maximum number of tokens that shall be returned |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1091 | * @return (@c CxStrtokCtx) a new string tokenization context |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1092 | */ |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1093 | #define cx_strtok(str, delim, limit) \ |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1094 | cx_strtok_(cx_strcast((str)), cx_strcast((delim)), (limit)) |
| 174 | 1095 | |
| 1096 | /** | |
| 1097 | * Returns the next token. | |
| 1098 | * | |
| 1099 | * The token will point to the source string. | |
| 1100 | * | |
| 1101 | * @param ctx the tokenization context | |
| 1102 | * @param token a pointer to memory where the next token shall be stored | |
| 1103 | * @return true if successful, false if the limit or the end of the string | |
| 1104 | * has been reached | |
| 1105 | */ | |
| 440 | 1106 | cx_attr_nonnull |
| 1107 | cx_attr_nodiscard | |
| 1108 | cx_attr_access_w(2) | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1109 | cx_attr_export |
| 174 | 1110 | bool cx_strtok_next( |
| 1111 | CxStrtokCtx *ctx, | |
| 1112 | cxstring *token | |
| 1113 | ); | |
| 1114 | ||
| 1115 | /** | |
| 1116 | * Returns the next token of a mutable string. | |
| 1117 | * | |
| 1118 | * The token will point to the source string. | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1119 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1120 | * @attention |
| 174 | 1121 | * If the context was not initialized over a mutable string, modifying |
| 1122 | * the data of the returned token is undefined behavior. | |
| 1123 | * | |
| 1124 | * @param ctx the tokenization context | |
| 1125 | * @param token a pointer to memory where the next token shall be stored | |
| 1126 | * @return true if successful, false if the limit or the end of the string | |
| 1127 | * has been reached | |
| 1128 | */ | |
| 440 | 1129 | cx_attr_nonnull |
| 1130 | cx_attr_nodiscard | |
| 1131 | cx_attr_access_w(2) | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1132 | cx_attr_export |
| 174 | 1133 | bool cx_strtok_next_m( |
| 1134 | CxStrtokCtx *ctx, | |
| 1135 | cxmutstr *token | |
| 1136 | ); | |
| 1137 | ||
| 1138 | /** | |
| 1139 | * Defines an array of more delimiters for the specified tokenization context. | |
| 1140 | * | |
| 1141 | * @param ctx the tokenization context | |
| 1142 | * @param delim array of more delimiters | |
| 1143 | * @param count number of elements in the array | |
| 1144 | */ | |
| 440 | 1145 | cx_attr_nonnull |
| 1146 | cx_attr_access_r(2, 3) | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1147 | cx_attr_export |
| 174 | 1148 | void cx_strtok_delim( |
| 1149 | CxStrtokCtx *ctx, | |
| 324 | 1150 | const cxstring *delim, |
| 174 | 1151 | size_t count |
| 1152 | ); | |
| 1153 | ||
| 440 | 1154 | /* ------------------------------------------------------------------------- * |
| 1155 | * string to number conversion functions * | |
| 1156 | * ------------------------------------------------------------------------- */ | |
| 1157 | ||
| 1158 | /** | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1159 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1160 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1161 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1162 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1163 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1164 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1165 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1166 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1167 | * @param base 2, 8, 10, or 16 |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1168 | * @param groupsep each character in this string is treated as group separator and ignored during conversion |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1169 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1170 | * @retval non-zero conversion was not possible |
| 440 | 1171 | */ |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1172 | cx_attr_access_w(2) cx_attr_nonnull_arg(2) cx_attr_export |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1173 | int cx_strtos_lc_(cxstring str, short *output, int base, const char *groupsep); |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1174 | |
| 440 | 1175 | /** |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1176 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1177 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1178 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1179 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1180 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1181 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1182 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1183 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1184 | * @param base 2, 8, 10, or 16 |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1185 | * @param groupsep each character in this string is treated as group separator and ignored during conversion |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1186 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1187 | * @retval non-zero conversion was not possible |
| 440 | 1188 | */ |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1189 | cx_attr_access_w(2) cx_attr_nonnull_arg(2) cx_attr_export |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1190 | int cx_strtoi_lc_(cxstring str, int *output, int base, const char *groupsep); |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1191 | |
| 440 | 1192 | /** |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1193 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1194 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1195 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1196 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1197 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1198 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1199 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1200 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1201 | * @param base 2, 8, 10, or 16 |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1202 | * @param groupsep each character in this string is treated as group separator and ignored during conversion |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1203 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1204 | * @retval non-zero conversion was not possible |
| 440 | 1205 | */ |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1206 | cx_attr_access_w(2) cx_attr_nonnull_arg(2) cx_attr_export |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1207 | int cx_strtol_lc_(cxstring str, long *output, int base, const char *groupsep); |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1208 | |
| 440 | 1209 | /** |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1210 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1211 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1212 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1213 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1214 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1215 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1216 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1217 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1218 | * @param base 2, 8, 10, or 16 |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1219 | * @param groupsep each character in this string is treated as group separator and ignored during conversion |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1220 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1221 | * @retval non-zero conversion was not possible |
| 440 | 1222 | */ |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1223 | cx_attr_access_w(2) cx_attr_nonnull_arg(2) cx_attr_export |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1224 | int cx_strtoll_lc_(cxstring str, long long *output, int base, const char *groupsep); |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1225 | |
| 440 | 1226 | /** |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1227 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1228 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1229 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1230 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1231 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1232 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1233 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1234 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1235 | * @param base 2, 8, 10, or 16 |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1236 | * @param groupsep each character in this string is treated as group separator and ignored during conversion |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1237 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1238 | * @retval non-zero conversion was not possible |
| 440 | 1239 | */ |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1240 | cx_attr_access_w(2) cx_attr_nonnull_arg(2) cx_attr_export |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1241 | int cx_strtoi8_lc_(cxstring str, int8_t *output, int base, const char *groupsep); |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1242 | |
| 440 | 1243 | /** |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1244 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1245 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1246 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1247 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1248 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1249 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1250 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1251 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1252 | * @param base 2, 8, 10, or 16 |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1253 | * @param groupsep each character in this string is treated as group separator and ignored during conversion |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1254 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1255 | * @retval non-zero conversion was not possible |
| 440 | 1256 | */ |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1257 | cx_attr_access_w(2) cx_attr_nonnull_arg(2) cx_attr_export |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1258 | int cx_strtoi16_lc_(cxstring str, int16_t *output, int base, const char *groupsep); |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1259 | |
| 440 | 1260 | /** |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1261 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1262 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1263 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1264 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1265 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1266 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1267 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1268 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1269 | * @param base 2, 8, 10, or 16 |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1270 | * @param groupsep each character in this string is treated as group separator and ignored during conversion |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1271 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1272 | * @retval non-zero conversion was not possible |
| 440 | 1273 | */ |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1274 | cx_attr_access_w(2) cx_attr_nonnull_arg(2) cx_attr_export |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1275 | int cx_strtoi32_lc_(cxstring str, int32_t *output, int base, const char *groupsep); |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1276 | |
| 440 | 1277 | /** |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1278 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1279 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1280 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1281 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1282 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1283 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1284 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1285 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1286 | * @param base 2, 8, 10, or 16 |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1287 | * @param groupsep each character in this string is treated as group separator and ignored during conversion |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1288 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1289 | * @retval non-zero conversion was not possible |
| 440 | 1290 | */ |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1291 | cx_attr_access_w(2) cx_attr_nonnull_arg(2) cx_attr_export |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1292 | int cx_strtoi64_lc_(cxstring str, int64_t *output, int base, const char *groupsep); |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1293 | |
| 440 | 1294 | /** |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1295 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1296 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1297 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1298 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1299 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1300 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1301 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1302 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1303 | * @param base 2, 8, 10, or 16 |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1304 | * @param groupsep each character in this string is treated as group separator and ignored during conversion |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1305 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1306 | * @retval non-zero conversion was not possible |
| 440 | 1307 | */ |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1308 | cx_attr_access_w(2) cx_attr_nonnull_arg(2) cx_attr_export |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1309 | int cx_strtous_lc_(cxstring str, unsigned short *output, int base, const char *groupsep); |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1310 | |
| 440 | 1311 | /** |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1312 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1313 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1314 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1315 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1316 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1317 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1318 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1319 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1320 | * @param base 2, 8, 10, or 16 |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1321 | * @param groupsep each character in this string is treated as group separator and ignored during conversion |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1322 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1323 | * @retval non-zero conversion was not possible |
| 440 | 1324 | */ |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1325 | cx_attr_access_w(2) cx_attr_nonnull_arg(2) cx_attr_export |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1326 | int cx_strtou_lc_(cxstring str, unsigned int *output, int base, const char *groupsep); |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1327 | |
| 440 | 1328 | /** |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1329 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1330 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1331 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1332 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1333 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1334 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1335 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1336 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1337 | * @param base 2, 8, 10, or 16 |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1338 | * @param groupsep each character in this string is treated as group separator and ignored during conversion |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1339 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1340 | * @retval non-zero conversion was not possible |
| 440 | 1341 | */ |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1342 | cx_attr_access_w(2) cx_attr_nonnull_arg(2) cx_attr_export |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1343 | int cx_strtoul_lc_(cxstring str, unsigned long *output, int base, const char *groupsep); |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1344 | |
| 440 | 1345 | /** |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1346 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1347 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1348 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1349 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1350 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1351 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1352 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1353 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1354 | * @param base 2, 8, 10, or 16 |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1355 | * @param groupsep each character in this string is treated as group separator and ignored during conversion |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1356 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1357 | * @retval non-zero conversion was not possible |
| 440 | 1358 | */ |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1359 | cx_attr_access_w(2) cx_attr_nonnull_arg(2) cx_attr_export |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1360 | int cx_strtoull_lc_(cxstring str, unsigned long long *output, int base, const char *groupsep); |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1361 | |
| 440 | 1362 | /** |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1363 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1364 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1365 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1366 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1367 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1368 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1369 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1370 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1371 | * @param base 2, 8, 10, or 16 |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1372 | * @param groupsep each character in this string is treated as group separator and ignored during conversion |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1373 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1374 | * @retval non-zero conversion was not possible |
| 440 | 1375 | */ |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1376 | cx_attr_access_w(2) cx_attr_nonnull_arg(2) cx_attr_export |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1377 | int cx_strtou8_lc_(cxstring str, uint8_t *output, int base, const char *groupsep); |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1378 | |
| 440 | 1379 | /** |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1380 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1381 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1382 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1383 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1384 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1385 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1386 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1387 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1388 | * @param base 2, 8, 10, or 16 |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1389 | * @param groupsep each character in this string is treated as group separator and ignored during conversion |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1390 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1391 | * @retval non-zero conversion was not possible |
| 440 | 1392 | */ |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1393 | cx_attr_access_w(2) cx_attr_nonnull_arg(2) cx_attr_export |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1394 | int cx_strtou16_lc_(cxstring str, uint16_t *output, int base, const char *groupsep); |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1395 | |
| 440 | 1396 | /** |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1397 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1398 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1399 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1400 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1401 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1402 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1403 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1404 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1405 | * @param base 2, 8, 10, or 16 |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1406 | * @param groupsep each character in this string is treated as group separator and ignored during conversion |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1407 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1408 | * @retval non-zero conversion was not possible |
| 440 | 1409 | */ |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1410 | cx_attr_access_w(2) cx_attr_nonnull_arg(2) cx_attr_export |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1411 | int cx_strtou32_lc_(cxstring str, uint32_t *output, int base, const char *groupsep); |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1412 | |
| 440 | 1413 | /** |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1414 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1415 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1416 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1417 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1418 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1419 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1420 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1421 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1422 | * @param base 2, 8, 10, or 16 |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1423 | * @param groupsep each character in this string is treated as group separator and ignored during conversion |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1424 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1425 | * @retval non-zero conversion was not possible |
| 440 | 1426 | */ |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1427 | cx_attr_access_w(2) cx_attr_nonnull_arg(2) cx_attr_export |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1428 | int cx_strtou64_lc_(cxstring str, uint64_t *output, int base, const char *groupsep); |
| 440 | 1429 | |
| 1430 | /** | |
| 1431 | * Converts a string to a number. | |
| 1432 | * | |
| 1433 | * The function returns non-zero when conversion is not possible. | |
| 1434 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. | |
| 1435 | * It sets errno to ERANGE when the target datatype is too small. | |
| 1436 | * | |
| 1437 | * @param str the string to convert | |
| 1438 | * @param output a pointer to the integer variable where the result shall be stored | |
| 1439 | * @param base 2, 8, 10, or 16 | |
| 1440 | * @param groupsep each character in this string is treated as group separator and ignored during conversion | |
| 1441 | * @retval zero success | |
| 1442 | * @retval non-zero conversion was not possible | |
| 1443 | */ | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1444 | cx_attr_access_w(2) cx_attr_nonnull_arg(2) cx_attr_export |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1445 | int cx_strtoz_lc_(cxstring str, size_t *output, int base, const char *groupsep); |
| 440 | 1446 | |
| 1447 | /** | |
| 1448 | * Converts a string to a single precision floating point number. | |
| 1449 | * | |
| 1450 | * The function returns non-zero when conversion is not possible. | |
| 1451 | * In that case the function sets errno to EINVAL when the reason is an invalid character. | |
| 1452 | * It sets errno to ERANGE when the necessary representation would exceed the limits defined in libc's float.h. | |
| 1453 | * | |
| 1454 | * @param str the string to convert | |
| 1455 | * @param output a pointer to the float variable where the result shall be stored | |
| 1456 | * @param decsep the decimal separator | |
| 1457 | * @param groupsep each character in this string is treated as group separator and ignored during conversion | |
| 1458 | * @retval zero success | |
| 1459 | * @retval non-zero conversion was not possible | |
| 1460 | */ | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1461 | cx_attr_access_w(2) cx_attr_nonnull_arg(2) cx_attr_export |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1462 | int cx_strtof_lc_(cxstring str, float *output, char decsep, const char *groupsep); |
| 440 | 1463 | |
| 1464 | /** | |
| 1465 | * Converts a string to a double precision floating point number. | |
| 1466 | * | |
| 1467 | * The function returns non-zero when conversion is not possible. | |
| 1468 | * In that case the function sets errno to EINVAL when the reason is an invalid character. | |
| 1469 | * It sets errno to ERANGE when the necessary representation would exceed the limits defined in libc's float.h. | |
| 1470 | * | |
| 1471 | * @param str the string to convert | |
| 1472 | * @param output a pointer to the float variable where the result shall be stored | |
| 1473 | * @param decsep the decimal separator | |
| 1474 | * @param groupsep each character in this string is treated as group separator and ignored during conversion | |
| 1475 | * @retval zero success | |
| 1476 | * @retval non-zero conversion was not possible | |
| 1477 | */ | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1478 | cx_attr_access_w(2) cx_attr_nonnull_arg(2) cx_attr_export |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1479 | int cx_strtod_lc_(cxstring str, double *output, char decsep, const char *groupsep); |
| 440 | 1480 | |
| 1481 | /** | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1482 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1483 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1484 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1485 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1486 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1487 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1488 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1489 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1490 | * @param base 2, 8, 10, or 16 |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1491 | * @param groupsep (@c const @c char*) each character in this string is treated as group separator and ignored during conversion |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1492 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1493 | * @retval non-zero conversion was not possible |
| 440 | 1494 | */ |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1495 | #define cx_strtos_lc(str, output, base, groupsep) cx_strtos_lc_(cx_strcast(str), output, base, groupsep) |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1496 | |
| 440 | 1497 | /** |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1498 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1499 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1500 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1501 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1502 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1503 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1504 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1505 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1506 | * @param base 2, 8, 10, or 16 |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1507 | * @param groupsep (@c const @c char*) each character in this string is treated as group separator and ignored during conversion |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1508 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1509 | * @retval non-zero conversion was not possible |
| 440 | 1510 | */ |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1511 | #define cx_strtoi_lc(str, output, base, groupsep) cx_strtoi_lc_(cx_strcast(str), output, base, groupsep) |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1512 | |
| 440 | 1513 | /** |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1514 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1515 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1516 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1517 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1518 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1519 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1520 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1521 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1522 | * @param base 2, 8, 10, or 16 |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1523 | * @param groupsep (@c const @c char*) each character in this string is treated as group separator and ignored during conversion |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1524 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1525 | * @retval non-zero conversion was not possible |
| 440 | 1526 | */ |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1527 | #define cx_strtol_lc(str, output, base, groupsep) cx_strtol_lc_(cx_strcast(str), output, base, groupsep) |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1528 | |
| 440 | 1529 | /** |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1530 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1531 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1532 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1533 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1534 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1535 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1536 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1537 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1538 | * @param base 2, 8, 10, or 16 |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1539 | * @param groupsep (@c const @c char*) each character in this string is treated as group separator and ignored during conversion |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1540 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1541 | * @retval non-zero conversion was not possible |
| 440 | 1542 | */ |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1543 | #define cx_strtoll_lc(str, output, base, groupsep) cx_strtoll_lc_(cx_strcast(str), output, base, groupsep) |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1544 | |
| 440 | 1545 | /** |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1546 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1547 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1548 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1549 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1550 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1551 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1552 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1553 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1554 | * @param base 2, 8, 10, or 16 |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1555 | * @param groupsep (@c const @c char*) each character in this string is treated as group separator and ignored during conversion |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1556 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1557 | * @retval non-zero conversion was not possible |
| 440 | 1558 | */ |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1559 | #define cx_strtoi8_lc(str, output, base, groupsep) cx_strtoi8_lc_(cx_strcast(str), output, base, groupsep) |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1560 | |
| 440 | 1561 | /** |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1562 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1563 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1564 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1565 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1566 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1567 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1568 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1569 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1570 | * @param base 2, 8, 10, or 16 |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1571 | * @param groupsep (@c const @c char*) each character in this string is treated as group separator and ignored during conversion |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1572 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1573 | * @retval non-zero conversion was not possible |
| 440 | 1574 | */ |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1575 | #define cx_strtoi16_lc(str, output, base, groupsep) cx_strtoi16_lc_(cx_strcast(str), output, base, groupsep) |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1576 | |
| 440 | 1577 | /** |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1578 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1579 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1580 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1581 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1582 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1583 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1584 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1585 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1586 | * @param base 2, 8, 10, or 16 |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1587 | * @param groupsep (@c const @c char*) each character in this string is treated as group separator and ignored during conversion |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1588 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1589 | * @retval non-zero conversion was not possible |
| 440 | 1590 | */ |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1591 | #define cx_strtoi32_lc(str, output, base, groupsep) cx_strtoi32_lc_(cx_strcast(str), output, base, groupsep) |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1592 | |
| 440 | 1593 | /** |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1594 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1595 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1596 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1597 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1598 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1599 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1600 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1601 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1602 | * @param base 2, 8, 10, or 16 |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1603 | * @param groupsep (@c const @c char*) each character in this string is treated as group separator and ignored during conversion |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1604 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1605 | * @retval non-zero conversion was not possible |
| 440 | 1606 | */ |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1607 | #define cx_strtoi64_lc(str, output, base, groupsep) cx_strtoi64_lc_(cx_strcast(str), output, base, groupsep) |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1608 | |
| 440 | 1609 | /** |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1610 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1611 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1612 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1613 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1614 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1615 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1616 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1617 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1618 | * @param base 2, 8, 10, or 16 |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1619 | * @param groupsep (@c const @c char*) each character in this string is treated as group separator and ignored during conversion |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1620 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1621 | * @retval non-zero conversion was not possible |
| 440 | 1622 | */ |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1623 | #define cx_strtous_lc(str, output, base, groupsep) cx_strtous_lc_(cx_strcast(str), output, base, groupsep) |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1624 | |
| 440 | 1625 | /** |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1626 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1627 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1628 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1629 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1630 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1631 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1632 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1633 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1634 | * @param base 2, 8, 10, or 16 |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1635 | * @param groupsep (@c const @c char*) each character in this string is treated as group separator and ignored during conversion |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1636 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1637 | * @retval non-zero conversion was not possible |
| 440 | 1638 | */ |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1639 | #define cx_strtou_lc(str, output, base, groupsep) cx_strtou_lc_(cx_strcast(str), output, base, groupsep) |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1640 | |
| 440 | 1641 | /** |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1642 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1643 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1644 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1645 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1646 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1647 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1648 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1649 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1650 | * @param base 2, 8, 10, or 16 |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1651 | * @param groupsep (@c const @c char*) each character in this string is treated as group separator and ignored during conversion |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1652 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1653 | * @retval non-zero conversion was not possible |
| 440 | 1654 | */ |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1655 | #define cx_strtoul_lc(str, output, base, groupsep) cx_strtoul_lc_(cx_strcast(str), output, base, groupsep) |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1656 | |
| 440 | 1657 | /** |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1658 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1659 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1660 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1661 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1662 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1663 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1664 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1665 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1666 | * @param base 2, 8, 10, or 16 |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1667 | * @param groupsep (@c const @c char*) each character in this string is treated as group separator and ignored during conversion |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1668 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1669 | * @retval non-zero conversion was not possible |
| 440 | 1670 | */ |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1671 | #define cx_strtoull_lc(str, output, base, groupsep) cx_strtoull_lc_(cx_strcast(str), output, base, groupsep) |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1672 | |
| 440 | 1673 | /** |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1674 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1675 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1676 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1677 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1678 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1679 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1680 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1681 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1682 | * @param base 2, 8, 10, or 16 |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1683 | * @param groupsep (@c const @c char*) each character in this string is treated as group separator and ignored during conversion |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1684 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1685 | * @retval non-zero conversion was not possible |
| 440 | 1686 | */ |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1687 | #define cx_strtou8_lc(str, output, base, groupsep) cx_strtou8_lc_(cx_strcast(str), output, base, groupsep) |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1688 | |
| 440 | 1689 | /** |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1690 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1691 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1692 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1693 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1694 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1695 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1696 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1697 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1698 | * @param base 2, 8, 10, or 16 |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1699 | * @param groupsep (@c const @c char*) each character in this string is treated as group separator and ignored during conversion |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1700 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1701 | * @retval non-zero conversion was not possible |
| 440 | 1702 | */ |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1703 | #define cx_strtou16_lc(str, output, base, groupsep) cx_strtou16_lc_(cx_strcast(str), output, base, groupsep) |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1704 | |
| 440 | 1705 | /** |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1706 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1707 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1708 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1709 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1710 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1711 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1712 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1713 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1714 | * @param base 2, 8, 10, or 16 |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1715 | * @param groupsep (@c const @c char*) each character in this string is treated as group separator and ignored during conversion |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1716 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1717 | * @retval non-zero conversion was not possible |
| 440 | 1718 | */ |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1719 | #define cx_strtou32_lc(str, output, base, groupsep) cx_strtou32_lc_(cx_strcast(str), output, base, groupsep) |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1720 | |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1721 | /** |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1722 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1723 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1724 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1725 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1726 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1727 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1728 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1729 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1730 | * @param base 2, 8, 10, or 16 |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1731 | * @param groupsep (@c const @c char*) each character in this string is treated as group separator and ignored during conversion |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1732 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1733 | * @retval non-zero conversion was not possible |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1734 | */ |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1735 | #define cx_strtou64_lc(str, output, base, groupsep) cx_strtou64_lc_(cx_strcast(str), output, base, groupsep) |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1736 | |
| 440 | 1737 | /** |
| 1738 | * Converts a string to a number. | |
| 1739 | * | |
| 1740 | * The function returns non-zero when conversion is not possible. | |
| 1741 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. | |
| 1742 | * It sets errno to ERANGE when the target datatype is too small. | |
| 1743 | * | |
| 1744 | * @param str the string to convert | |
| 1745 | * @param output a pointer to the integer variable where the result shall be stored | |
| 1746 | * @param base 2, 8, 10, or 16 | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1747 | * @param groupsep (@c const @c char*) each character in this string is treated as group separator and ignored during conversion |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1748 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1749 | * @retval non-zero conversion was not possible |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1750 | */ |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1751 | #define cx_strtoz_lc(str, output, base, groupsep) cx_strtoz_lc_(cx_strcast(str), output, base, groupsep) |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1752 | |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1753 | /** |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1754 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1755 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1756 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1757 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1758 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1759 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1760 | * The comma character is treated as group separator and ignored during parsing. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1761 | * If you want to choose the set of group separators, use the @c _lc variant of this function (e.g. cx_strtoz_lc()). |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1762 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1763 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1764 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1765 | * @param base 2, 8, 10, or 16 |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1766 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1767 | * @retval non-zero conversion was not possible |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1768 | */ |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1769 | #define cx_strtos(str, output, base) cx_strtos_lc_(cx_strcast(str), output, base, ",") |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1770 | |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1771 | /** |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1772 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1773 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1774 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1775 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1776 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1777 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1778 | * The comma character is treated as group separator and ignored during parsing. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1779 | * If you want to choose the set of group separators, use the @c _lc variant of this function (e.g. cx_strtoz_lc()). |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1780 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1781 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1782 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1783 | * @param base 2, 8, 10, or 16 |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1784 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1785 | * @retval non-zero conversion was not possible |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1786 | */ |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1787 | #define cx_strtoi(str, output, base) cx_strtoi_lc_(cx_strcast(str), output, base, ",") |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1788 | |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1789 | /** |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1790 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1791 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1792 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1793 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1794 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1795 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1796 | * The comma character is treated as group separator and ignored during parsing. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1797 | * If you want to choose the set of group separators, use the @c _lc variant of this function (e.g. cx_strtoz_lc()). |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1798 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1799 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1800 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1801 | * @param base 2, 8, 10, or 16 |
| 440 | 1802 | * @retval zero success |
| 1803 | * @retval non-zero conversion was not possible | |
| 1804 | */ | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1805 | #define cx_strtol(str, output, base) cx_strtol_lc_(cx_strcast(str), output, base, ",") |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1806 | |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1807 | /** |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1808 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1809 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1810 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1811 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1812 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1813 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1814 | * The comma character is treated as group separator and ignored during parsing. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1815 | * If you want to choose the set of group separators, use the @c _lc variant of this function (e.g. cx_strtoz_lc()). |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1816 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1817 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1818 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1819 | * @param base 2, 8, 10, or 16 |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1820 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1821 | * @retval non-zero conversion was not possible |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1822 | */ |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1823 | #define cx_strtoll(str, output, base) cx_strtoll_lc_(cx_strcast(str), output, base, ",") |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1824 | |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1825 | /** |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1826 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1827 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1828 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1829 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1830 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1831 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1832 | * The comma character is treated as group separator and ignored during parsing. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1833 | * If you want to choose the set of group separators, use the @c _lc variant of this function (e.g. cx_strtoz_lc()). |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1834 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1835 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1836 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1837 | * @param base 2, 8, 10, or 16 |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1838 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1839 | * @retval non-zero conversion was not possible |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1840 | */ |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1841 | #define cx_strtoi8(str, output, base) cx_strtoi8_lc_(cx_strcast(str), output, base, ",") |
| 440 | 1842 | |
| 1843 | /** | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1844 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1845 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1846 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1847 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1848 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1849 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1850 | * The comma character is treated as group separator and ignored during parsing. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1851 | * If you want to choose the set of group separators, use the @c _lc variant of this function (e.g. cx_strtoz_lc()). |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1852 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1853 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1854 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1855 | * @param base 2, 8, 10, or 16 |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1856 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1857 | * @retval non-zero conversion was not possible |
| 440 | 1858 | */ |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1859 | #define cx_strtoi16(str, output, base) cx_strtoi16_lc_(cx_strcast(str), output, base, ",") |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1860 | |
| 440 | 1861 | /** |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1862 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1863 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1864 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1865 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1866 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1867 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1868 | * The comma character is treated as group separator and ignored during parsing. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1869 | * If you want to choose the set of group separators, use the @c _lc variant of this function (e.g. cx_strtoz_lc()). |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1870 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1871 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1872 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1873 | * @param base 2, 8, 10, or 16 |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1874 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1875 | * @retval non-zero conversion was not possible |
| 440 | 1876 | */ |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1877 | #define cx_strtoi32(str, output, base) cx_strtoi32_lc_(cx_strcast(str), output, base, ",") |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1878 | |
| 440 | 1879 | /** |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1880 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1881 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1882 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1883 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1884 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1885 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1886 | * The comma character is treated as group separator and ignored during parsing. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1887 | * If you want to choose the set of group separators, use the @c _lc variant of this function (e.g. cx_strtoz_lc()). |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1888 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1889 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1890 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1891 | * @param base 2, 8, 10, or 16 |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1892 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1893 | * @retval non-zero conversion was not possible |
| 440 | 1894 | */ |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1895 | #define cx_strtoi64(str, output, base) cx_strtoi64_lc_(cx_strcast(str), output, base, ",") |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1896 | |
| 440 | 1897 | /** |
| 1898 | * Converts a string to a number. | |
| 1899 | * | |
| 1900 | * The function returns non-zero when conversion is not possible. | |
| 1901 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. | |
| 1902 | * It sets errno to ERANGE when the target datatype is too small. | |
| 1903 | * | |
| 1904 | * The comma character is treated as group separator and ignored during parsing. | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1905 | * If you want to choose the set of group separators, use the @c _lc variant of this function (e.g. cx_strtoz_lc()). |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1906 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1907 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1908 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1909 | * @param base 2, 8, 10, or 16 |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1910 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1911 | * @retval non-zero conversion was not possible |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1912 | */ |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1913 | #define cx_strtoz(str, output, base) cx_strtoz_lc_(cx_strcast(str), output, base, ",") |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1914 | |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1915 | /** |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1916 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1917 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1918 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1919 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1920 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1921 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1922 | * The comma character is treated as group separator and ignored during parsing. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1923 | * If you want to choose the set of group separators, use the @c _lc variant of this function (e.g. cx_strtoz_lc()). |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1924 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1925 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1926 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1927 | * @param base 2, 8, 10, or 16 |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1928 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1929 | * @retval non-zero conversion was not possible |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1930 | */ |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1931 | #define cx_strtous(str, output, base) cx_strtous_lc_(cx_strcast(str), output, base, ",") |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1932 | |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1933 | /** |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1934 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1935 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1936 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1937 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1938 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1939 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1940 | * The comma character is treated as group separator and ignored during parsing. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1941 | * If you want to choose the set of group separators, use the @c _lc variant of this function (e.g. cx_strtoz_lc()). |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1942 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1943 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1944 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1945 | * @param base 2, 8, 10, or 16 |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1946 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1947 | * @retval non-zero conversion was not possible |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1948 | */ |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1949 | #define cx_strtou(str, output, base) cx_strtou_lc_(cx_strcast(str), output, base, ",") |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1950 | |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1951 | /** |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1952 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1953 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1954 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1955 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1956 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1957 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1958 | * The comma character is treated as group separator and ignored during parsing. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1959 | * If you want to choose the set of group separators, use the @c _lc variant of this function (e.g. cx_strtoz_lc()). |
| 440 | 1960 | * |
| 1961 | * @param str the string to convert | |
| 1962 | * @param output a pointer to the integer variable where the result shall be stored | |
| 1963 | * @param base 2, 8, 10, or 16 | |
| 1964 | * @retval zero success | |
| 1965 | * @retval non-zero conversion was not possible | |
| 1966 | */ | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1967 | #define cx_strtoul(str, output, base) cx_strtoul_lc_(cx_strcast(str), output, base, ",") |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1968 | |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1969 | /** |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1970 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1971 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1972 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1973 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1974 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1975 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1976 | * The comma character is treated as group separator and ignored during parsing. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1977 | * If you want to choose the set of group separators, use the @c _lc variant of this function (e.g. cx_strtoz_lc()). |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1978 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1979 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1980 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1981 | * @param base 2, 8, 10, or 16 |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1982 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1983 | * @retval non-zero conversion was not possible |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1984 | */ |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1985 | #define cx_strtoull(str, output, base) cx_strtoull_lc_(cx_strcast(str), output, base, ",") |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1986 | |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1987 | /** |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1988 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1989 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1990 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1991 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1992 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1993 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1994 | * The comma character is treated as group separator and ignored during parsing. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1995 | * If you want to choose the set of group separators, use the @c _lc variant of this function (e.g. cx_strtoz_lc()). |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1996 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1997 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1998 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
1999 | * @param base 2, 8, 10, or 16 |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2000 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2001 | * @retval non-zero conversion was not possible |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2002 | */ |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2003 | #define cx_strtou8(str, output, base) cx_strtou8_lc_(cx_strcast(str), output, base, ",") |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2004 | |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2005 | /** |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2006 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2007 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2008 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2009 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2010 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2011 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2012 | * The comma character is treated as group separator and ignored during parsing. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2013 | * If you want to choose the set of group separators, use the @c _lc variant of this function (e.g. cx_strtoz_lc()). |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2014 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2015 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2016 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2017 | * @param base 2, 8, 10, or 16 |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2018 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2019 | * @retval non-zero conversion was not possible |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2020 | */ |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2021 | #define cx_strtou16(str, output, base) cx_strtou16_lc_(cx_strcast(str), output, base, ",") |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2022 | |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2023 | /** |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2024 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2025 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2026 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2027 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2028 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2029 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2030 | * The comma character is treated as group separator and ignored during parsing. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2031 | * If you want to choose the set of group separators, use the @c _lc variant of this function (e.g. cx_strtoz_lc()). |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2032 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2033 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2034 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2035 | * @param base 2, 8, 10, or 16 |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2036 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2037 | * @retval non-zero conversion was not possible |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2038 | */ |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2039 | #define cx_strtou32(str, output, base) cx_strtou32_lc_(cx_strcast(str), output, base, ",") |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2040 | |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2041 | /** |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2042 | * Converts a string to a number. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2043 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2044 | * The function returns non-zero when conversion is not possible. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2045 | * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2046 | * It sets errno to ERANGE when the target datatype is too small. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2047 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2048 | * The comma character is treated as group separator and ignored during parsing. |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2049 | * If you want to choose the set of group separators, use the @c _lc variant of this function (e.g. cx_strtoz_lc()). |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2050 | * |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2051 | * @param str the string to convert |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2052 | * @param output a pointer to the integer variable where the result shall be stored |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2053 | * @param base 2, 8, 10, or 16 |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2054 | * @retval zero success |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2055 | * @retval non-zero conversion was not possible |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2056 | */ |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2057 | #define cx_strtou64(str, output, base) cx_strtou64_lc_(cx_strcast(str), output, base, ",") |
| 440 | 2058 | |
| 2059 | /** | |
| 2060 | * Converts a string to a single precision floating point number. | |
| 2061 | * | |
| 2062 | * The function returns non-zero when conversion is not possible. | |
| 2063 | * In that case the function sets errno to EINVAL when the reason is an invalid character. | |
| 2064 | * It sets errno to ERANGE when the necessary representation would exceed the limits defined in libc's float.h. | |
| 2065 | * | |
| 2066 | * @param str the string to convert | |
| 2067 | * @param output a pointer to the float variable where the result shall be stored | |
| 2068 | * @param decsep the decimal separator | |
| 2069 | * @param groupsep each character in this string is treated as group separator and ignored during conversion | |
| 2070 | * @retval zero success | |
| 2071 | * @retval non-zero conversion was not possible | |
| 2072 | */ | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2073 | #define cx_strtof_lc(str, output, decsep, groupsep) cx_strtof_lc_(cx_strcast(str), output, decsep, groupsep) |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2074 | |
| 440 | 2075 | /** |
| 2076 | * Converts a string to a double precision floating point number. | |
| 2077 | * | |
| 2078 | * The function returns non-zero when conversion is not possible. | |
| 2079 | * In that case the function sets errno to EINVAL when the reason is an invalid character. | |
| 2080 | * | |
| 2081 | * @param str the string to convert | |
| 2082 | * @param output a pointer to the double variable where the result shall be stored | |
| 2083 | * @param decsep the decimal separator | |
| 2084 | * @param groupsep each character in this string is treated as group separator and ignored during conversion | |
| 2085 | * @retval zero success | |
| 2086 | * @retval non-zero conversion was not possible | |
| 2087 | */ | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2088 | #define cx_strtod_lc(str, output, decsep, groupsep) cx_strtod_lc_(cx_strcast(str), output, decsep, groupsep) |
| 440 | 2089 | |
| 2090 | /** | |
| 2091 | * Converts a string to a single precision floating point number. | |
| 2092 | * | |
| 2093 | * The function returns non-zero when conversion is not possible. | |
| 2094 | * In that case the function sets errno to EINVAL when the reason is an invalid character. | |
| 2095 | * It sets errno to ERANGE when the necessary representation would exceed the limits defined in libc's float.h. | |
| 2096 | * | |
| 2097 | * The decimal separator is assumed to be a dot character. | |
| 2098 | * The comma character is treated as group separator and ignored during parsing. | |
| 2099 | * If you want to choose a different format, use cx_strtof_lc(). | |
| 2100 | * | |
| 2101 | * @param str the string to convert | |
| 2102 | * @param output a pointer to the float variable where the result shall be stored | |
| 2103 | * @retval zero success | |
| 2104 | * @retval non-zero conversion was not possible | |
| 2105 | */ | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2106 | #define cx_strtof(str, output) cx_strtof_lc_(cx_strcast(str), output, '.', ",") |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2107 | |
| 440 | 2108 | /** |
| 2109 | * Converts a string to a double precision floating point number. | |
| 2110 | * | |
| 2111 | * The function returns non-zero when conversion is not possible. | |
| 2112 | * In that case the function sets errno to EINVAL when the reason is an invalid character. | |
| 2113 | * | |
| 2114 | * The decimal separator is assumed to be a dot character. | |
| 2115 | * The comma character is treated as group separator and ignored during parsing. | |
| 2116 | * If you want to choose a different format, use cx_strtof_lc(). | |
| 2117 | * | |
| 2118 | * @param str the string to convert | |
| 2119 | * @param output a pointer to the double variable where the result shall be stored | |
| 2120 | * @retval zero success | |
| 2121 | * @retval non-zero conversion was not possible | |
| 2122 | */ | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
2123 | #define cx_strtod(str, output) cx_strtod_lc_(cx_strcast(str), output, '.', ",") |
| 174 | 2124 | |
| 2125 | #ifdef __cplusplus | |
| 2126 | } // extern "C" | |
| 2127 | #endif | |
| 2128 | ||
| 2129 | #endif //UCX_STRING_H |