953 * @param suffix the suffix the string should have |
974 * @param suffix the suffix the string should have |
954 * @return @c true, if and only if the string has the specified suffix, |
975 * @return @c true, if and only if the string has the specified suffix, |
955 * @c false otherwise |
976 * @c false otherwise |
956 */ |
977 */ |
957 cx_attr_nodiscard |
978 cx_attr_nodiscard |
|
979 cx_attr_export |
958 bool cx_strcasesuffix( |
980 bool cx_strcasesuffix( |
959 cxstring string, |
981 cxstring string, |
960 cxstring suffix |
982 cxstring suffix |
961 ); |
983 ); |
962 |
984 |
963 /** |
985 /** |
964 * Converts the string to lower case. |
986 * Replaces a string with another string. |
965 * |
987 * |
966 * The change is made in-place. If you want a copy, use cx_strdup(), first. |
|
967 * |
|
968 * @param string the string to modify |
|
969 * @see cx_strdup() |
|
970 */ |
|
971 void cx_strlower(cxmutstr string); |
|
972 |
|
973 /** |
|
974 * Converts the string to upper case. |
|
975 * |
|
976 * The change is made in-place. If you want a copy, use cx_strdup(), first. |
|
977 * |
|
978 * @param string the string to modify |
|
979 * @see cx_strdup() |
|
980 */ |
|
981 void cx_strupper(cxmutstr string); |
|
982 |
|
983 /** |
|
984 * Replaces a pattern in a string with another string. |
|
985 * |
|
986 * The pattern is taken literally and is no regular expression. |
|
987 * Replaces at most @p replmax occurrences. |
988 * Replaces at most @p replmax occurrences. |
988 * |
989 * |
989 * The returned string will be allocated by @p allocator and is guaranteed |
990 * The returned string will be allocated by @p allocator and is guaranteed |
990 * to be zero-terminated. |
991 * to be zero-terminated. |
991 * |
992 * |
992 * If allocation fails, or the input string is empty, |
993 * If allocation fails, or the input string is empty, |
993 * the returned string will be empty. |
994 * the returned string will be empty. |
994 * |
995 * |
995 * @param allocator the allocator to use |
996 * @param allocator the allocator to use |
996 * @param str the string where replacements should be applied |
997 * @param str the string where replacements should be applied |
997 * @param pattern the pattern to search for |
998 * @param search the string to search for |
998 * @param replacement the replacement string |
999 * @param replacement the replacement string |
999 * @param replmax maximum number of replacements |
1000 * @param replmax maximum number of replacements |
1000 * @return the resulting string after applying the replacements |
1001 * @return the resulting string after applying the replacements |
1001 */ |
1002 */ |
1002 cx_attr_nodiscard |
1003 cx_attr_nodiscard |
1003 cx_attr_nonnull |
1004 cx_attr_nonnull |
|
1005 cx_attr_export |
1004 cxmutstr cx_strreplacen_a( |
1006 cxmutstr cx_strreplacen_a( |
1005 const CxAllocator *allocator, |
1007 const CxAllocator *allocator, |
1006 cxstring str, |
1008 cxstring str, |
1007 cxstring pattern, |
1009 cxstring search, |
1008 cxstring replacement, |
1010 cxstring replacement, |
1009 size_t replmax |
1011 size_t replmax |
1010 ); |
1012 ); |
1011 |
1013 |
1012 /** |
1014 /** |
1013 * Replaces a pattern in a string with another string. |
1015 * Replaces a string with another string. |
1014 * |
1016 * |
1015 * The pattern is taken literally and is no regular expression. |
|
1016 * Replaces at most @p replmax occurrences. |
1017 * Replaces at most @p replmax occurrences. |
1017 * |
1018 * |
1018 * The returned string will be allocated by @c malloc() and is guaranteed |
1019 * The returned string will be allocated by @c malloc() and is guaranteed |
1019 * to be zero-terminated. |
1020 * to be zero-terminated. |
1020 * |
1021 * |
1021 * If allocation fails, or the input string is empty, |
1022 * If allocation fails, or the input string is empty, |
1022 * the returned string will be empty. |
1023 * the returned string will be empty. |
1023 * |
1024 * |
1024 * @param str (@c cxstring) the string where replacements should be applied |
1025 * @param str (@c cxstring) the string where replacements should be applied |
1025 * @param pattern (@c cxstring) the pattern to search for |
1026 * @param search (@c cxstring) the string to search for |
1026 * @param replacement (@c cxstring) the replacement string |
1027 * @param replacement (@c cxstring) the replacement string |
1027 * @param replmax (@c size_t) maximum number of replacements |
1028 * @param replmax (@c size_t) maximum number of replacements |
1028 * @return (@c cxmutstr) the resulting string after applying the replacements |
1029 * @return (@c cxmutstr) the resulting string after applying the replacements |
1029 */ |
1030 */ |
1030 #define cx_strreplacen(str, pattern, replacement, replmax) \ |
1031 #define cx_strreplacen(str, search, replacement, replmax) \ |
1031 cx_strreplacen_a(cxDefaultAllocator, str, pattern, replacement, replmax) |
1032 cx_strreplacen_a(cxDefaultAllocator, str, search, replacement, replmax) |
1032 |
1033 |
1033 /** |
1034 /** |
1034 * Replaces a pattern in a string with another string. |
1035 * Replaces a string with another string. |
1035 * |
|
1036 * The pattern is taken literally and is no regular expression. |
|
1037 * |
1036 * |
1038 * The returned string will be allocated by @p allocator and is guaranteed |
1037 * The returned string will be allocated by @p allocator and is guaranteed |
1039 * to be zero-terminated. |
1038 * to be zero-terminated. |
1040 * |
1039 * |
1041 * If allocation fails, or the input string is empty, |
1040 * If allocation fails, or the input string is empty, |
1042 * the returned string will be empty. |
1041 * the returned string will be empty. |
1043 * |
1042 * |
1044 * @param allocator (@c CxAllocator*) the allocator to use |
1043 * @param allocator (@c CxAllocator*) the allocator to use |
1045 * @param str (@c cxstring) the string where replacements should be applied |
1044 * @param str (@c cxstring) the string where replacements should be applied |
1046 * @param pattern (@c cxstring) the pattern to search for |
1045 * @param search (@c cxstring) the string to search for |
1047 * @param replacement (@c cxstring) the replacement string |
1046 * @param replacement (@c cxstring) the replacement string |
1048 * @return (@c cxmutstr) the resulting string after applying the replacements |
1047 * @return (@c cxmutstr) the resulting string after applying the replacements |
1049 */ |
1048 */ |
1050 #define cx_strreplace_a(allocator, str, pattern, replacement) \ |
1049 #define cx_strreplace_a(allocator, str, search, replacement) \ |
1051 cx_strreplacen_a(allocator, str, pattern, replacement, SIZE_MAX) |
1050 cx_strreplacen_a(allocator, str, search, replacement, SIZE_MAX) |
1052 |
1051 |
1053 /** |
1052 /** |
1054 * Replaces a pattern in a string with another string. |
1053 * Replaces a string with another string. |
1055 * |
|
1056 * The pattern is taken literally and is no regular expression. |
|
1057 * Replaces at most @p replmax occurrences. |
|
1058 * |
1054 * |
1059 * The returned string will be allocated by @c malloc() and is guaranteed |
1055 * The returned string will be allocated by @c malloc() and is guaranteed |
1060 * to be zero-terminated. |
1056 * to be zero-terminated. |
1061 * |
1057 * |
1062 * If allocation fails, or the input string is empty, |
1058 * If allocation fails, or the input string is empty, |
1063 * the returned string will be empty. |
1059 * the returned string will be empty. |
1064 * |
1060 * |
1065 * @param str (@c cxstring) the string where replacements should be applied |
1061 * @param str (@c cxstring) the string where replacements should be applied |
1066 * @param pattern (@c cxstring) the pattern to search for |
1062 * @param search (@c cxstring) the string to search for |
1067 * @param replacement (@c cxstring) the replacement string |
1063 * @param replacement (@c cxstring) the replacement string |
1068 * @return (@c cxmutstr) the resulting string after applying the replacements |
1064 * @return (@c cxmutstr) the resulting string after applying the replacements |
1069 */ |
1065 */ |
1070 #define cx_strreplace(str, pattern, replacement) \ |
1066 #define cx_strreplace(str, search, replacement) \ |
1071 cx_strreplacen_a(cxDefaultAllocator, str, pattern, replacement, SIZE_MAX) |
1067 cx_strreplacen_a(cxDefaultAllocator, str, search, replacement, SIZE_MAX) |
1072 |
1068 |
1073 /** |
1069 /** |
1074 * Creates a string tokenization context. |
1070 * Creates a string tokenization context. |
1075 * |
1071 * |
1076 * @param str the string to tokenize |
1072 * @param str the string to tokenize |
1077 * @param delim the delimiter (must not be empty) |
1073 * @param delim the delimiter (must not be empty) |
1078 * @param limit the maximum number of tokens that shall be returned |
1074 * @param limit the maximum number of tokens that shall be returned |
1079 * @return a new string tokenization context |
1075 * @return a new string tokenization context |
1080 */ |
1076 */ |
1081 cx_attr_nodiscard |
1077 cx_attr_nodiscard |
1082 CxStrtokCtx cx_strtok( |
1078 cx_attr_export |
|
1079 CxStrtokCtx cx_strtok_( |
1083 cxstring str, |
1080 cxstring str, |
1084 cxstring delim, |
1081 cxstring delim, |
1085 size_t limit |
1082 size_t limit |
1086 ); |
1083 ); |
1087 |
1084 |
1088 /** |
1085 /** |
1089 * Creates a string tokenization context for a mutable string. |
1086 * Creates a string tokenization context. |
1090 * |
1087 * |
1091 * @param str the string to tokenize |
1088 * @param str the string to tokenize |
1092 * @param delim the delimiter (must not be empty) |
1089 * @param delim the delimiter string (must not be empty) |
1093 * @param limit the maximum number of tokens that shall be returned |
1090 * @param limit (@c size_t) the maximum number of tokens that shall be returned |
1094 * @return a new string tokenization context |
1091 * @return (@c CxStrtokCtx) a new string tokenization context |
1095 */ |
1092 */ |
1096 cx_attr_nodiscard |
1093 #define cx_strtok(str, delim, limit) \ |
1097 CxStrtokCtx cx_strtok_m( |
1094 cx_strtok_(cx_strcast((str)), cx_strcast((delim)), (limit)) |
1098 cxmutstr str, |
|
1099 cxstring delim, |
|
1100 size_t limit |
|
1101 ); |
|
1102 |
1095 |
1103 /** |
1096 /** |
1104 * Returns the next token. |
1097 * Returns the next token. |
1105 * |
1098 * |
1106 * The token will point to the source string. |
1099 * The token will point to the source string. |
1255 * @param base 2, 8, 10, or 16 |
1167 * @param base 2, 8, 10, or 16 |
1256 * @param groupsep each character in this string is treated as group separator and ignored during conversion |
1168 * @param groupsep each character in this string is treated as group separator and ignored during conversion |
1257 * @retval zero success |
1169 * @retval zero success |
1258 * @retval non-zero conversion was not possible |
1170 * @retval non-zero conversion was not possible |
1259 */ |
1171 */ |
1260 cx_attr_access_w(2) cx_attr_nonnull_arg(2) |
1172 cx_attr_access_w(2) cx_attr_nonnull_arg(2) cx_attr_export |
1261 int cx_strtouz_lc(cxstring str, size_t *output, int base, const char *groupsep); |
1173 int cx_strtos_lc_(cxstring str, short *output, int base, const char *groupsep); |
|
1174 |
|
1175 /** |
|
1176 * Converts a string to a number. |
|
1177 * |
|
1178 * The function returns non-zero when conversion is not possible. |
|
1179 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
1180 * It sets errno to ERANGE when the target datatype is too small. |
|
1181 * |
|
1182 * @param str the string to convert |
|
1183 * @param output a pointer to the integer variable where the result shall be stored |
|
1184 * @param base 2, 8, 10, or 16 |
|
1185 * @param groupsep each character in this string is treated as group separator and ignored during conversion |
|
1186 * @retval zero success |
|
1187 * @retval non-zero conversion was not possible |
|
1188 */ |
|
1189 cx_attr_access_w(2) cx_attr_nonnull_arg(2) cx_attr_export |
|
1190 int cx_strtoi_lc_(cxstring str, int *output, int base, const char *groupsep); |
|
1191 |
|
1192 /** |
|
1193 * Converts a string to a number. |
|
1194 * |
|
1195 * The function returns non-zero when conversion is not possible. |
|
1196 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
1197 * It sets errno to ERANGE when the target datatype is too small. |
|
1198 * |
|
1199 * @param str the string to convert |
|
1200 * @param output a pointer to the integer variable where the result shall be stored |
|
1201 * @param base 2, 8, 10, or 16 |
|
1202 * @param groupsep each character in this string is treated as group separator and ignored during conversion |
|
1203 * @retval zero success |
|
1204 * @retval non-zero conversion was not possible |
|
1205 */ |
|
1206 cx_attr_access_w(2) cx_attr_nonnull_arg(2) cx_attr_export |
|
1207 int cx_strtol_lc_(cxstring str, long *output, int base, const char *groupsep); |
|
1208 |
|
1209 /** |
|
1210 * Converts a string to a number. |
|
1211 * |
|
1212 * The function returns non-zero when conversion is not possible. |
|
1213 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
1214 * It sets errno to ERANGE when the target datatype is too small. |
|
1215 * |
|
1216 * @param str the string to convert |
|
1217 * @param output a pointer to the integer variable where the result shall be stored |
|
1218 * @param base 2, 8, 10, or 16 |
|
1219 * @param groupsep each character in this string is treated as group separator and ignored during conversion |
|
1220 * @retval zero success |
|
1221 * @retval non-zero conversion was not possible |
|
1222 */ |
|
1223 cx_attr_access_w(2) cx_attr_nonnull_arg(2) cx_attr_export |
|
1224 int cx_strtoll_lc_(cxstring str, long long *output, int base, const char *groupsep); |
|
1225 |
|
1226 /** |
|
1227 * Converts a string to a number. |
|
1228 * |
|
1229 * The function returns non-zero when conversion is not possible. |
|
1230 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
1231 * It sets errno to ERANGE when the target datatype is too small. |
|
1232 * |
|
1233 * @param str the string to convert |
|
1234 * @param output a pointer to the integer variable where the result shall be stored |
|
1235 * @param base 2, 8, 10, or 16 |
|
1236 * @param groupsep each character in this string is treated as group separator and ignored during conversion |
|
1237 * @retval zero success |
|
1238 * @retval non-zero conversion was not possible |
|
1239 */ |
|
1240 cx_attr_access_w(2) cx_attr_nonnull_arg(2) cx_attr_export |
|
1241 int cx_strtoi8_lc_(cxstring str, int8_t *output, int base, const char *groupsep); |
|
1242 |
|
1243 /** |
|
1244 * Converts a string to a number. |
|
1245 * |
|
1246 * The function returns non-zero when conversion is not possible. |
|
1247 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
1248 * It sets errno to ERANGE when the target datatype is too small. |
|
1249 * |
|
1250 * @param str the string to convert |
|
1251 * @param output a pointer to the integer variable where the result shall be stored |
|
1252 * @param base 2, 8, 10, or 16 |
|
1253 * @param groupsep each character in this string is treated as group separator and ignored during conversion |
|
1254 * @retval zero success |
|
1255 * @retval non-zero conversion was not possible |
|
1256 */ |
|
1257 cx_attr_access_w(2) cx_attr_nonnull_arg(2) cx_attr_export |
|
1258 int cx_strtoi16_lc_(cxstring str, int16_t *output, int base, const char *groupsep); |
|
1259 |
|
1260 /** |
|
1261 * Converts a string to a number. |
|
1262 * |
|
1263 * The function returns non-zero when conversion is not possible. |
|
1264 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
1265 * It sets errno to ERANGE when the target datatype is too small. |
|
1266 * |
|
1267 * @param str the string to convert |
|
1268 * @param output a pointer to the integer variable where the result shall be stored |
|
1269 * @param base 2, 8, 10, or 16 |
|
1270 * @param groupsep each character in this string is treated as group separator and ignored during conversion |
|
1271 * @retval zero success |
|
1272 * @retval non-zero conversion was not possible |
|
1273 */ |
|
1274 cx_attr_access_w(2) cx_attr_nonnull_arg(2) cx_attr_export |
|
1275 int cx_strtoi32_lc_(cxstring str, int32_t *output, int base, const char *groupsep); |
|
1276 |
|
1277 /** |
|
1278 * Converts a string to a number. |
|
1279 * |
|
1280 * The function returns non-zero when conversion is not possible. |
|
1281 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
1282 * It sets errno to ERANGE when the target datatype is too small. |
|
1283 * |
|
1284 * @param str the string to convert |
|
1285 * @param output a pointer to the integer variable where the result shall be stored |
|
1286 * @param base 2, 8, 10, or 16 |
|
1287 * @param groupsep each character in this string is treated as group separator and ignored during conversion |
|
1288 * @retval zero success |
|
1289 * @retval non-zero conversion was not possible |
|
1290 */ |
|
1291 cx_attr_access_w(2) cx_attr_nonnull_arg(2) cx_attr_export |
|
1292 int cx_strtoi64_lc_(cxstring str, int64_t *output, int base, const char *groupsep); |
|
1293 |
|
1294 /** |
|
1295 * Converts a string to a number. |
|
1296 * |
|
1297 * The function returns non-zero when conversion is not possible. |
|
1298 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
1299 * It sets errno to ERANGE when the target datatype is too small. |
|
1300 * |
|
1301 * @param str the string to convert |
|
1302 * @param output a pointer to the integer variable where the result shall be stored |
|
1303 * @param base 2, 8, 10, or 16 |
|
1304 * @param groupsep each character in this string is treated as group separator and ignored during conversion |
|
1305 * @retval zero success |
|
1306 * @retval non-zero conversion was not possible |
|
1307 */ |
|
1308 cx_attr_access_w(2) cx_attr_nonnull_arg(2) cx_attr_export |
|
1309 int cx_strtous_lc_(cxstring str, unsigned short *output, int base, const char *groupsep); |
|
1310 |
|
1311 /** |
|
1312 * Converts a string to a number. |
|
1313 * |
|
1314 * The function returns non-zero when conversion is not possible. |
|
1315 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
1316 * It sets errno to ERANGE when the target datatype is too small. |
|
1317 * |
|
1318 * @param str the string to convert |
|
1319 * @param output a pointer to the integer variable where the result shall be stored |
|
1320 * @param base 2, 8, 10, or 16 |
|
1321 * @param groupsep each character in this string is treated as group separator and ignored during conversion |
|
1322 * @retval zero success |
|
1323 * @retval non-zero conversion was not possible |
|
1324 */ |
|
1325 cx_attr_access_w(2) cx_attr_nonnull_arg(2) cx_attr_export |
|
1326 int cx_strtou_lc_(cxstring str, unsigned int *output, int base, const char *groupsep); |
|
1327 |
|
1328 /** |
|
1329 * Converts a string to a number. |
|
1330 * |
|
1331 * The function returns non-zero when conversion is not possible. |
|
1332 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
1333 * It sets errno to ERANGE when the target datatype is too small. |
|
1334 * |
|
1335 * @param str the string to convert |
|
1336 * @param output a pointer to the integer variable where the result shall be stored |
|
1337 * @param base 2, 8, 10, or 16 |
|
1338 * @param groupsep each character in this string is treated as group separator and ignored during conversion |
|
1339 * @retval zero success |
|
1340 * @retval non-zero conversion was not possible |
|
1341 */ |
|
1342 cx_attr_access_w(2) cx_attr_nonnull_arg(2) cx_attr_export |
|
1343 int cx_strtoul_lc_(cxstring str, unsigned long *output, int base, const char *groupsep); |
|
1344 |
|
1345 /** |
|
1346 * Converts a string to a number. |
|
1347 * |
|
1348 * The function returns non-zero when conversion is not possible. |
|
1349 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
1350 * It sets errno to ERANGE when the target datatype is too small. |
|
1351 * |
|
1352 * @param str the string to convert |
|
1353 * @param output a pointer to the integer variable where the result shall be stored |
|
1354 * @param base 2, 8, 10, or 16 |
|
1355 * @param groupsep each character in this string is treated as group separator and ignored during conversion |
|
1356 * @retval zero success |
|
1357 * @retval non-zero conversion was not possible |
|
1358 */ |
|
1359 cx_attr_access_w(2) cx_attr_nonnull_arg(2) cx_attr_export |
|
1360 int cx_strtoull_lc_(cxstring str, unsigned long long *output, int base, const char *groupsep); |
|
1361 |
|
1362 /** |
|
1363 * Converts a string to a number. |
|
1364 * |
|
1365 * The function returns non-zero when conversion is not possible. |
|
1366 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
1367 * It sets errno to ERANGE when the target datatype is too small. |
|
1368 * |
|
1369 * @param str the string to convert |
|
1370 * @param output a pointer to the integer variable where the result shall be stored |
|
1371 * @param base 2, 8, 10, or 16 |
|
1372 * @param groupsep each character in this string is treated as group separator and ignored during conversion |
|
1373 * @retval zero success |
|
1374 * @retval non-zero conversion was not possible |
|
1375 */ |
|
1376 cx_attr_access_w(2) cx_attr_nonnull_arg(2) cx_attr_export |
|
1377 int cx_strtou8_lc_(cxstring str, uint8_t *output, int base, const char *groupsep); |
|
1378 |
|
1379 /** |
|
1380 * Converts a string to a number. |
|
1381 * |
|
1382 * The function returns non-zero when conversion is not possible. |
|
1383 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
1384 * It sets errno to ERANGE when the target datatype is too small. |
|
1385 * |
|
1386 * @param str the string to convert |
|
1387 * @param output a pointer to the integer variable where the result shall be stored |
|
1388 * @param base 2, 8, 10, or 16 |
|
1389 * @param groupsep each character in this string is treated as group separator and ignored during conversion |
|
1390 * @retval zero success |
|
1391 * @retval non-zero conversion was not possible |
|
1392 */ |
|
1393 cx_attr_access_w(2) cx_attr_nonnull_arg(2) cx_attr_export |
|
1394 int cx_strtou16_lc_(cxstring str, uint16_t *output, int base, const char *groupsep); |
|
1395 |
|
1396 /** |
|
1397 * Converts a string to a number. |
|
1398 * |
|
1399 * The function returns non-zero when conversion is not possible. |
|
1400 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
1401 * It sets errno to ERANGE when the target datatype is too small. |
|
1402 * |
|
1403 * @param str the string to convert |
|
1404 * @param output a pointer to the integer variable where the result shall be stored |
|
1405 * @param base 2, 8, 10, or 16 |
|
1406 * @param groupsep each character in this string is treated as group separator and ignored during conversion |
|
1407 * @retval zero success |
|
1408 * @retval non-zero conversion was not possible |
|
1409 */ |
|
1410 cx_attr_access_w(2) cx_attr_nonnull_arg(2) cx_attr_export |
|
1411 int cx_strtou32_lc_(cxstring str, uint32_t *output, int base, const char *groupsep); |
|
1412 |
|
1413 /** |
|
1414 * Converts a string to a number. |
|
1415 * |
|
1416 * The function returns non-zero when conversion is not possible. |
|
1417 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
1418 * It sets errno to ERANGE when the target datatype is too small. |
|
1419 * |
|
1420 * @param str the string to convert |
|
1421 * @param output a pointer to the integer variable where the result shall be stored |
|
1422 * @param base 2, 8, 10, or 16 |
|
1423 * @param groupsep each character in this string is treated as group separator and ignored during conversion |
|
1424 * @retval zero success |
|
1425 * @retval non-zero conversion was not possible |
|
1426 */ |
|
1427 cx_attr_access_w(2) cx_attr_nonnull_arg(2) cx_attr_export |
|
1428 int cx_strtou64_lc_(cxstring str, uint64_t *output, int base, const char *groupsep); |
|
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 */ |
|
1444 cx_attr_access_w(2) cx_attr_nonnull_arg(2) cx_attr_export |
|
1445 int cx_strtoz_lc_(cxstring str, size_t *output, int base, const char *groupsep); |
|
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 */ |
|
1461 cx_attr_access_w(2) cx_attr_nonnull_arg(2) cx_attr_export |
|
1462 int cx_strtof_lc_(cxstring str, float *output, char decsep, const char *groupsep); |
|
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 */ |
|
1478 cx_attr_access_w(2) cx_attr_nonnull_arg(2) cx_attr_export |
|
1479 int cx_strtod_lc_(cxstring str, double *output, char decsep, const char *groupsep); |
|
1480 |
|
1481 /** |
|
1482 * Converts a string to a number. |
|
1483 * |
|
1484 * The function returns non-zero when conversion is not possible. |
|
1485 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
1486 * It sets errno to ERANGE when the target datatype is too small. |
|
1487 * |
|
1488 * @param str the string to convert |
|
1489 * @param output a pointer to the integer variable where the result shall be stored |
|
1490 * @param base 2, 8, 10, or 16 |
|
1491 * @param groupsep (@c const @c char*) each character in this string is treated as group separator and ignored during conversion |
|
1492 * @retval zero success |
|
1493 * @retval non-zero conversion was not possible |
|
1494 */ |
|
1495 #define cx_strtos_lc(str, output, base, groupsep) cx_strtos_lc_(cx_strcast(str), output, base, groupsep) |
|
1496 |
|
1497 /** |
|
1498 * Converts a string to a number. |
|
1499 * |
|
1500 * The function returns non-zero when conversion is not possible. |
|
1501 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
1502 * It sets errno to ERANGE when the target datatype is too small. |
|
1503 * |
|
1504 * @param str the string to convert |
|
1505 * @param output a pointer to the integer variable where the result shall be stored |
|
1506 * @param base 2, 8, 10, or 16 |
|
1507 * @param groupsep (@c const @c char*) each character in this string is treated as group separator and ignored during conversion |
|
1508 * @retval zero success |
|
1509 * @retval non-zero conversion was not possible |
|
1510 */ |
|
1511 #define cx_strtoi_lc(str, output, base, groupsep) cx_strtoi_lc_(cx_strcast(str), output, base, groupsep) |
|
1512 |
|
1513 /** |
|
1514 * Converts a string to a number. |
|
1515 * |
|
1516 * The function returns non-zero when conversion is not possible. |
|
1517 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
1518 * It sets errno to ERANGE when the target datatype is too small. |
|
1519 * |
|
1520 * @param str the string to convert |
|
1521 * @param output a pointer to the integer variable where the result shall be stored |
|
1522 * @param base 2, 8, 10, or 16 |
|
1523 * @param groupsep (@c const @c char*) each character in this string is treated as group separator and ignored during conversion |
|
1524 * @retval zero success |
|
1525 * @retval non-zero conversion was not possible |
|
1526 */ |
|
1527 #define cx_strtol_lc(str, output, base, groupsep) cx_strtol_lc_(cx_strcast(str), output, base, groupsep) |
|
1528 |
|
1529 /** |
|
1530 * Converts a string to a number. |
|
1531 * |
|
1532 * The function returns non-zero when conversion is not possible. |
|
1533 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
1534 * It sets errno to ERANGE when the target datatype is too small. |
|
1535 * |
|
1536 * @param str the string to convert |
|
1537 * @param output a pointer to the integer variable where the result shall be stored |
|
1538 * @param base 2, 8, 10, or 16 |
|
1539 * @param groupsep (@c const @c char*) each character in this string is treated as group separator and ignored during conversion |
|
1540 * @retval zero success |
|
1541 * @retval non-zero conversion was not possible |
|
1542 */ |
|
1543 #define cx_strtoll_lc(str, output, base, groupsep) cx_strtoll_lc_(cx_strcast(str), output, base, groupsep) |
|
1544 |
|
1545 /** |
|
1546 * Converts a string to a number. |
|
1547 * |
|
1548 * The function returns non-zero when conversion is not possible. |
|
1549 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
1550 * It sets errno to ERANGE when the target datatype is too small. |
|
1551 * |
|
1552 * @param str the string to convert |
|
1553 * @param output a pointer to the integer variable where the result shall be stored |
|
1554 * @param base 2, 8, 10, or 16 |
|
1555 * @param groupsep (@c const @c char*) each character in this string is treated as group separator and ignored during conversion |
|
1556 * @retval zero success |
|
1557 * @retval non-zero conversion was not possible |
|
1558 */ |
|
1559 #define cx_strtoi8_lc(str, output, base, groupsep) cx_strtoi8_lc_(cx_strcast(str), output, base, groupsep) |
|
1560 |
|
1561 /** |
|
1562 * Converts a string to a number. |
|
1563 * |
|
1564 * The function returns non-zero when conversion is not possible. |
|
1565 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
1566 * It sets errno to ERANGE when the target datatype is too small. |
|
1567 * |
|
1568 * @param str the string to convert |
|
1569 * @param output a pointer to the integer variable where the result shall be stored |
|
1570 * @param base 2, 8, 10, or 16 |
|
1571 * @param groupsep (@c const @c char*) each character in this string is treated as group separator and ignored during conversion |
|
1572 * @retval zero success |
|
1573 * @retval non-zero conversion was not possible |
|
1574 */ |
|
1575 #define cx_strtoi16_lc(str, output, base, groupsep) cx_strtoi16_lc_(cx_strcast(str), output, base, groupsep) |
|
1576 |
|
1577 /** |
|
1578 * Converts a string to a number. |
|
1579 * |
|
1580 * The function returns non-zero when conversion is not possible. |
|
1581 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
1582 * It sets errno to ERANGE when the target datatype is too small. |
|
1583 * |
|
1584 * @param str the string to convert |
|
1585 * @param output a pointer to the integer variable where the result shall be stored |
|
1586 * @param base 2, 8, 10, or 16 |
|
1587 * @param groupsep (@c const @c char*) each character in this string is treated as group separator and ignored during conversion |
|
1588 * @retval zero success |
|
1589 * @retval non-zero conversion was not possible |
|
1590 */ |
|
1591 #define cx_strtoi32_lc(str, output, base, groupsep) cx_strtoi32_lc_(cx_strcast(str), output, base, groupsep) |
|
1592 |
|
1593 /** |
|
1594 * Converts a string to a number. |
|
1595 * |
|
1596 * The function returns non-zero when conversion is not possible. |
|
1597 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
1598 * It sets errno to ERANGE when the target datatype is too small. |
|
1599 * |
|
1600 * @param str the string to convert |
|
1601 * @param output a pointer to the integer variable where the result shall be stored |
|
1602 * @param base 2, 8, 10, or 16 |
|
1603 * @param groupsep (@c const @c char*) each character in this string is treated as group separator and ignored during conversion |
|
1604 * @retval zero success |
|
1605 * @retval non-zero conversion was not possible |
|
1606 */ |
|
1607 #define cx_strtoi64_lc(str, output, base, groupsep) cx_strtoi64_lc_(cx_strcast(str), output, base, groupsep) |
|
1608 |
|
1609 /** |
|
1610 * Converts a string to a number. |
|
1611 * |
|
1612 * The function returns non-zero when conversion is not possible. |
|
1613 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
1614 * It sets errno to ERANGE when the target datatype is too small. |
|
1615 * |
|
1616 * @param str the string to convert |
|
1617 * @param output a pointer to the integer variable where the result shall be stored |
|
1618 * @param base 2, 8, 10, or 16 |
|
1619 * @param groupsep (@c const @c char*) each character in this string is treated as group separator and ignored during conversion |
|
1620 * @retval zero success |
|
1621 * @retval non-zero conversion was not possible |
|
1622 */ |
|
1623 #define cx_strtous_lc(str, output, base, groupsep) cx_strtous_lc_(cx_strcast(str), output, base, groupsep) |
|
1624 |
|
1625 /** |
|
1626 * Converts a string to a number. |
|
1627 * |
|
1628 * The function returns non-zero when conversion is not possible. |
|
1629 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
1630 * It sets errno to ERANGE when the target datatype is too small. |
|
1631 * |
|
1632 * @param str the string to convert |
|
1633 * @param output a pointer to the integer variable where the result shall be stored |
|
1634 * @param base 2, 8, 10, or 16 |
|
1635 * @param groupsep (@c const @c char*) each character in this string is treated as group separator and ignored during conversion |
|
1636 * @retval zero success |
|
1637 * @retval non-zero conversion was not possible |
|
1638 */ |
|
1639 #define cx_strtou_lc(str, output, base, groupsep) cx_strtou_lc_(cx_strcast(str), output, base, groupsep) |
|
1640 |
|
1641 /** |
|
1642 * Converts a string to a number. |
|
1643 * |
|
1644 * The function returns non-zero when conversion is not possible. |
|
1645 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
1646 * It sets errno to ERANGE when the target datatype is too small. |
|
1647 * |
|
1648 * @param str the string to convert |
|
1649 * @param output a pointer to the integer variable where the result shall be stored |
|
1650 * @param base 2, 8, 10, or 16 |
|
1651 * @param groupsep (@c const @c char*) each character in this string is treated as group separator and ignored during conversion |
|
1652 * @retval zero success |
|
1653 * @retval non-zero conversion was not possible |
|
1654 */ |
|
1655 #define cx_strtoul_lc(str, output, base, groupsep) cx_strtoul_lc_(cx_strcast(str), output, base, groupsep) |
|
1656 |
|
1657 /** |
|
1658 * Converts a string to a number. |
|
1659 * |
|
1660 * The function returns non-zero when conversion is not possible. |
|
1661 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
1662 * It sets errno to ERANGE when the target datatype is too small. |
|
1663 * |
|
1664 * @param str the string to convert |
|
1665 * @param output a pointer to the integer variable where the result shall be stored |
|
1666 * @param base 2, 8, 10, or 16 |
|
1667 * @param groupsep (@c const @c char*) each character in this string is treated as group separator and ignored during conversion |
|
1668 * @retval zero success |
|
1669 * @retval non-zero conversion was not possible |
|
1670 */ |
|
1671 #define cx_strtoull_lc(str, output, base, groupsep) cx_strtoull_lc_(cx_strcast(str), output, base, groupsep) |
|
1672 |
|
1673 /** |
|
1674 * Converts a string to a number. |
|
1675 * |
|
1676 * The function returns non-zero when conversion is not possible. |
|
1677 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
1678 * It sets errno to ERANGE when the target datatype is too small. |
|
1679 * |
|
1680 * @param str the string to convert |
|
1681 * @param output a pointer to the integer variable where the result shall be stored |
|
1682 * @param base 2, 8, 10, or 16 |
|
1683 * @param groupsep (@c const @c char*) each character in this string is treated as group separator and ignored during conversion |
|
1684 * @retval zero success |
|
1685 * @retval non-zero conversion was not possible |
|
1686 */ |
|
1687 #define cx_strtou8_lc(str, output, base, groupsep) cx_strtou8_lc_(cx_strcast(str), output, base, groupsep) |
|
1688 |
|
1689 /** |
|
1690 * Converts a string to a number. |
|
1691 * |
|
1692 * The function returns non-zero when conversion is not possible. |
|
1693 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
1694 * It sets errno to ERANGE when the target datatype is too small. |
|
1695 * |
|
1696 * @param str the string to convert |
|
1697 * @param output a pointer to the integer variable where the result shall be stored |
|
1698 * @param base 2, 8, 10, or 16 |
|
1699 * @param groupsep (@c const @c char*) each character in this string is treated as group separator and ignored during conversion |
|
1700 * @retval zero success |
|
1701 * @retval non-zero conversion was not possible |
|
1702 */ |
|
1703 #define cx_strtou16_lc(str, output, base, groupsep) cx_strtou16_lc_(cx_strcast(str), output, base, groupsep) |
|
1704 |
|
1705 /** |
|
1706 * Converts a string to a number. |
|
1707 * |
|
1708 * The function returns non-zero when conversion is not possible. |
|
1709 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
1710 * It sets errno to ERANGE when the target datatype is too small. |
|
1711 * |
|
1712 * @param str the string to convert |
|
1713 * @param output a pointer to the integer variable where the result shall be stored |
|
1714 * @param base 2, 8, 10, or 16 |
|
1715 * @param groupsep (@c const @c char*) each character in this string is treated as group separator and ignored during conversion |
|
1716 * @retval zero success |
|
1717 * @retval non-zero conversion was not possible |
|
1718 */ |
|
1719 #define cx_strtou32_lc(str, output, base, groupsep) cx_strtou32_lc_(cx_strcast(str), output, base, groupsep) |
|
1720 |
|
1721 /** |
|
1722 * Converts a string to a number. |
|
1723 * |
|
1724 * The function returns non-zero when conversion is not possible. |
|
1725 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
1726 * It sets errno to ERANGE when the target datatype is too small. |
|
1727 * |
|
1728 * @param str the string to convert |
|
1729 * @param output a pointer to the integer variable where the result shall be stored |
|
1730 * @param base 2, 8, 10, or 16 |
|
1731 * @param groupsep (@c const @c char*) each character in this string is treated as group separator and ignored during conversion |
|
1732 * @retval zero success |
|
1733 * @retval non-zero conversion was not possible |
|
1734 */ |
|
1735 #define cx_strtou64_lc(str, output, base, groupsep) cx_strtou64_lc_(cx_strcast(str), output, base, groupsep) |
|
1736 |
|
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 |
|
1747 * @param groupsep (@c const @c char*) each character in this string is treated as group separator and ignored during conversion |
|
1748 * @retval zero success |
|
1749 * @retval non-zero conversion was not possible |
|
1750 */ |
|
1751 #define cx_strtoz_lc(str, output, base, groupsep) cx_strtoz_lc_(cx_strcast(str), output, base, groupsep) |
|
1752 |
|
1753 /** |
|
1754 * Converts a string to a number. |
|
1755 * |
|
1756 * The function returns non-zero when conversion is not possible. |
|
1757 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
1758 * It sets errno to ERANGE when the target datatype is too small. |
|
1759 * |
|
1760 * The comma character is treated as group separator and ignored during parsing. |
|
1761 * If you want to choose the set of group separators, use the @c _lc variant of this function (e.g. cx_strtoz_lc()). |
|
1762 * |
|
1763 * @param str the string to convert |
|
1764 * @param output a pointer to the integer variable where the result shall be stored |
|
1765 * @param base 2, 8, 10, or 16 |
|
1766 * @retval zero success |
|
1767 * @retval non-zero conversion was not possible |
|
1768 */ |
|
1769 #define cx_strtos(str, output, base) cx_strtos_lc_(cx_strcast(str), output, base, ",") |
|
1770 |
|
1771 /** |
|
1772 * Converts a string to a number. |
|
1773 * |
|
1774 * The function returns non-zero when conversion is not possible. |
|
1775 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
1776 * It sets errno to ERANGE when the target datatype is too small. |
|
1777 * |
|
1778 * The comma character is treated as group separator and ignored during parsing. |
|
1779 * If you want to choose the set of group separators, use the @c _lc variant of this function (e.g. cx_strtoz_lc()). |
|
1780 * |
|
1781 * @param str the string to convert |
|
1782 * @param output a pointer to the integer variable where the result shall be stored |
|
1783 * @param base 2, 8, 10, or 16 |
|
1784 * @retval zero success |
|
1785 * @retval non-zero conversion was not possible |
|
1786 */ |
|
1787 #define cx_strtoi(str, output, base) cx_strtoi_lc_(cx_strcast(str), output, base, ",") |
|
1788 |
|
1789 /** |
|
1790 * Converts a string to a number. |
|
1791 * |
|
1792 * The function returns non-zero when conversion is not possible. |
|
1793 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
1794 * It sets errno to ERANGE when the target datatype is too small. |
|
1795 * |
|
1796 * The comma character is treated as group separator and ignored during parsing. |
|
1797 * If you want to choose the set of group separators, use the @c _lc variant of this function (e.g. cx_strtoz_lc()). |
|
1798 * |
|
1799 * @param str the string to convert |
|
1800 * @param output a pointer to the integer variable where the result shall be stored |
|
1801 * @param base 2, 8, 10, or 16 |
|
1802 * @retval zero success |
|
1803 * @retval non-zero conversion was not possible |
|
1804 */ |
|
1805 #define cx_strtol(str, output, base) cx_strtol_lc_(cx_strcast(str), output, base, ",") |
|
1806 |
|
1807 /** |
|
1808 * Converts a string to a number. |
|
1809 * |
|
1810 * The function returns non-zero when conversion is not possible. |
|
1811 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
1812 * It sets errno to ERANGE when the target datatype is too small. |
|
1813 * |
|
1814 * The comma character is treated as group separator and ignored during parsing. |
|
1815 * If you want to choose the set of group separators, use the @c _lc variant of this function (e.g. cx_strtoz_lc()). |
|
1816 * |
|
1817 * @param str the string to convert |
|
1818 * @param output a pointer to the integer variable where the result shall be stored |
|
1819 * @param base 2, 8, 10, or 16 |
|
1820 * @retval zero success |
|
1821 * @retval non-zero conversion was not possible |
|
1822 */ |
|
1823 #define cx_strtoll(str, output, base) cx_strtoll_lc_(cx_strcast(str), output, base, ",") |
|
1824 |
|
1825 /** |
|
1826 * Converts a string to a number. |
|
1827 * |
|
1828 * The function returns non-zero when conversion is not possible. |
|
1829 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
1830 * It sets errno to ERANGE when the target datatype is too small. |
|
1831 * |
|
1832 * The comma character is treated as group separator and ignored during parsing. |
|
1833 * If you want to choose the set of group separators, use the @c _lc variant of this function (e.g. cx_strtoz_lc()). |
|
1834 * |
|
1835 * @param str the string to convert |
|
1836 * @param output a pointer to the integer variable where the result shall be stored |
|
1837 * @param base 2, 8, 10, or 16 |
|
1838 * @retval zero success |
|
1839 * @retval non-zero conversion was not possible |
|
1840 */ |
|
1841 #define cx_strtoi8(str, output, base) cx_strtoi8_lc_(cx_strcast(str), output, base, ",") |
|
1842 |
|
1843 /** |
|
1844 * Converts a string to a number. |
|
1845 * |
|
1846 * The function returns non-zero when conversion is not possible. |
|
1847 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
1848 * It sets errno to ERANGE when the target datatype is too small. |
|
1849 * |
|
1850 * The comma character is treated as group separator and ignored during parsing. |
|
1851 * If you want to choose the set of group separators, use the @c _lc variant of this function (e.g. cx_strtoz_lc()). |
|
1852 * |
|
1853 * @param str the string to convert |
|
1854 * @param output a pointer to the integer variable where the result shall be stored |
|
1855 * @param base 2, 8, 10, or 16 |
|
1856 * @retval zero success |
|
1857 * @retval non-zero conversion was not possible |
|
1858 */ |
|
1859 #define cx_strtoi16(str, output, base) cx_strtoi16_lc_(cx_strcast(str), output, base, ",") |
|
1860 |
|
1861 /** |
|
1862 * Converts a string to a number. |
|
1863 * |
|
1864 * The function returns non-zero when conversion is not possible. |
|
1865 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
1866 * It sets errno to ERANGE when the target datatype is too small. |
|
1867 * |
|
1868 * The comma character is treated as group separator and ignored during parsing. |
|
1869 * If you want to choose the set of group separators, use the @c _lc variant of this function (e.g. cx_strtoz_lc()). |
|
1870 * |
|
1871 * @param str the string to convert |
|
1872 * @param output a pointer to the integer variable where the result shall be stored |
|
1873 * @param base 2, 8, 10, or 16 |
|
1874 * @retval zero success |
|
1875 * @retval non-zero conversion was not possible |
|
1876 */ |
|
1877 #define cx_strtoi32(str, output, base) cx_strtoi32_lc_(cx_strcast(str), output, base, ",") |
|
1878 |
|
1879 /** |
|
1880 * Converts a string to a number. |
|
1881 * |
|
1882 * The function returns non-zero when conversion is not possible. |
|
1883 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
1884 * It sets errno to ERANGE when the target datatype is too small. |
|
1885 * |
|
1886 * The comma character is treated as group separator and ignored during parsing. |
|
1887 * If you want to choose the set of group separators, use the @c _lc variant of this function (e.g. cx_strtoz_lc()). |
|
1888 * |
|
1889 * @param str the string to convert |
|
1890 * @param output a pointer to the integer variable where the result shall be stored |
|
1891 * @param base 2, 8, 10, or 16 |
|
1892 * @retval zero success |
|
1893 * @retval non-zero conversion was not possible |
|
1894 */ |
|
1895 #define cx_strtoi64(str, output, base) cx_strtoi64_lc_(cx_strcast(str), output, base, ",") |
|
1896 |
|
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. |
|
1905 * If you want to choose the set of group separators, use the @c _lc variant of this function (e.g. cx_strtoz_lc()). |
|
1906 * |
|
1907 * @param str the string to convert |
|
1908 * @param output a pointer to the integer variable where the result shall be stored |
|
1909 * @param base 2, 8, 10, or 16 |
|
1910 * @retval zero success |
|
1911 * @retval non-zero conversion was not possible |
|
1912 */ |
|
1913 #define cx_strtoz(str, output, base) cx_strtoz_lc_(cx_strcast(str), output, base, ",") |
|
1914 |
|
1915 /** |
|
1916 * Converts a string to a number. |
|
1917 * |
|
1918 * The function returns non-zero when conversion is not possible. |
|
1919 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
1920 * It sets errno to ERANGE when the target datatype is too small. |
|
1921 * |
|
1922 * The comma character is treated as group separator and ignored during parsing. |
|
1923 * If you want to choose the set of group separators, use the @c _lc variant of this function (e.g. cx_strtoz_lc()). |
|
1924 * |
|
1925 * @param str the string to convert |
|
1926 * @param output a pointer to the integer variable where the result shall be stored |
|
1927 * @param base 2, 8, 10, or 16 |
|
1928 * @retval zero success |
|
1929 * @retval non-zero conversion was not possible |
|
1930 */ |
|
1931 #define cx_strtous(str, output, base) cx_strtous_lc_(cx_strcast(str), output, base, ",") |
|
1932 |
|
1933 /** |
|
1934 * Converts a string to a number. |
|
1935 * |
|
1936 * The function returns non-zero when conversion is not possible. |
|
1937 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
1938 * It sets errno to ERANGE when the target datatype is too small. |
|
1939 * |
|
1940 * The comma character is treated as group separator and ignored during parsing. |
|
1941 * If you want to choose the set of group separators, use the @c _lc variant of this function (e.g. cx_strtoz_lc()). |
|
1942 * |
|
1943 * @param str the string to convert |
|
1944 * @param output a pointer to the integer variable where the result shall be stored |
|
1945 * @param base 2, 8, 10, or 16 |
|
1946 * @retval zero success |
|
1947 * @retval non-zero conversion was not possible |
|
1948 */ |
|
1949 #define cx_strtou(str, output, base) cx_strtou_lc_(cx_strcast(str), output, base, ",") |
|
1950 |
|
1951 /** |
|
1952 * Converts a string to a number. |
|
1953 * |
|
1954 * The function returns non-zero when conversion is not possible. |
|
1955 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
1956 * It sets errno to ERANGE when the target datatype is too small. |
|
1957 * |
|
1958 * The comma character is treated as group separator and ignored during parsing. |
|
1959 * If you want to choose the set of group separators, use the @c _lc variant of this function (e.g. cx_strtoz_lc()). |
|
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 */ |
|
1967 #define cx_strtoul(str, output, base) cx_strtoul_lc_(cx_strcast(str), output, base, ",") |
|
1968 |
|
1969 /** |
|
1970 * Converts a string to a number. |
|
1971 * |
|
1972 * The function returns non-zero when conversion is not possible. |
|
1973 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
1974 * It sets errno to ERANGE when the target datatype is too small. |
|
1975 * |
|
1976 * The comma character is treated as group separator and ignored during parsing. |
|
1977 * If you want to choose the set of group separators, use the @c _lc variant of this function (e.g. cx_strtoz_lc()). |
|
1978 * |
|
1979 * @param str the string to convert |
|
1980 * @param output a pointer to the integer variable where the result shall be stored |
|
1981 * @param base 2, 8, 10, or 16 |
|
1982 * @retval zero success |
|
1983 * @retval non-zero conversion was not possible |
|
1984 */ |
|
1985 #define cx_strtoull(str, output, base) cx_strtoull_lc_(cx_strcast(str), output, base, ",") |
|
1986 |
|
1987 /** |
|
1988 * Converts a string to a number. |
|
1989 * |
|
1990 * The function returns non-zero when conversion is not possible. |
|
1991 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
1992 * It sets errno to ERANGE when the target datatype is too small. |
|
1993 * |
|
1994 * The comma character is treated as group separator and ignored during parsing. |
|
1995 * If you want to choose the set of group separators, use the @c _lc variant of this function (e.g. cx_strtoz_lc()). |
|
1996 * |
|
1997 * @param str the string to convert |
|
1998 * @param output a pointer to the integer variable where the result shall be stored |
|
1999 * @param base 2, 8, 10, or 16 |
|
2000 * @retval zero success |
|
2001 * @retval non-zero conversion was not possible |
|
2002 */ |
|
2003 #define cx_strtou8(str, output, base) cx_strtou8_lc_(cx_strcast(str), output, base, ",") |
|
2004 |
|
2005 /** |
|
2006 * Converts a string to a number. |
|
2007 * |
|
2008 * The function returns non-zero when conversion is not possible. |
|
2009 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
2010 * It sets errno to ERANGE when the target datatype is too small. |
|
2011 * |
|
2012 * The comma character is treated as group separator and ignored during parsing. |
|
2013 * If you want to choose the set of group separators, use the @c _lc variant of this function (e.g. cx_strtoz_lc()). |
|
2014 * |
|
2015 * @param str the string to convert |
|
2016 * @param output a pointer to the integer variable where the result shall be stored |
|
2017 * @param base 2, 8, 10, or 16 |
|
2018 * @retval zero success |
|
2019 * @retval non-zero conversion was not possible |
|
2020 */ |
|
2021 #define cx_strtou16(str, output, base) cx_strtou16_lc_(cx_strcast(str), output, base, ",") |
|
2022 |
|
2023 /** |
|
2024 * Converts a string to a number. |
|
2025 * |
|
2026 * The function returns non-zero when conversion is not possible. |
|
2027 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
2028 * It sets errno to ERANGE when the target datatype is too small. |
|
2029 * |
|
2030 * The comma character is treated as group separator and ignored during parsing. |
|
2031 * If you want to choose the set of group separators, use the @c _lc variant of this function (e.g. cx_strtoz_lc()). |
|
2032 * |
|
2033 * @param str the string to convert |
|
2034 * @param output a pointer to the integer variable where the result shall be stored |
|
2035 * @param base 2, 8, 10, or 16 |
|
2036 * @retval zero success |
|
2037 * @retval non-zero conversion was not possible |
|
2038 */ |
|
2039 #define cx_strtou32(str, output, base) cx_strtou32_lc_(cx_strcast(str), output, base, ",") |
|
2040 |
|
2041 /** |
|
2042 * Converts a string to a number. |
|
2043 * |
|
2044 * The function returns non-zero when conversion is not possible. |
|
2045 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
2046 * It sets errno to ERANGE when the target datatype is too small. |
|
2047 * |
|
2048 * The comma character is treated as group separator and ignored during parsing. |
|
2049 * If you want to choose the set of group separators, use the @c _lc variant of this function (e.g. cx_strtoz_lc()). |
|
2050 * |
|
2051 * @param str the string to convert |
|
2052 * @param output a pointer to the integer variable where the result shall be stored |
|
2053 * @param base 2, 8, 10, or 16 |
|
2054 * @retval zero success |
|
2055 * @retval non-zero conversion was not possible |
|
2056 */ |
|
2057 #define cx_strtou64(str, output, base) cx_strtou64_lc_(cx_strcast(str), output, base, ",") |
|
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 */ |
|
2073 #define cx_strtof_lc(str, output, decsep, groupsep) cx_strtof_lc_(cx_strcast(str), output, decsep, groupsep) |
|
2074 |
|
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 */ |
|
2088 #define cx_strtod_lc(str, output, decsep, groupsep) cx_strtod_lc_(cx_strcast(str), output, decsep, groupsep) |
1262 |
2089 |
1263 /** |
2090 /** |
1264 * Converts a string to a single precision floating point number. |
2091 * Converts a string to a single precision floating point number. |
1265 * |
2092 * |
1266 * The function returns non-zero when conversion is not possible. |
2093 * The function returns non-zero when conversion is not possible. |
1271 * The comma character is treated as group separator and ignored during parsing. |
2098 * The comma character is treated as group separator and ignored during parsing. |
1272 * If you want to choose a different format, use cx_strtof_lc(). |
2099 * If you want to choose a different format, use cx_strtof_lc(). |
1273 * |
2100 * |
1274 * @param str the string to convert |
2101 * @param str the string to convert |
1275 * @param output a pointer to the float variable where the result shall be stored |
2102 * @param output a pointer to the float variable where the result shall be stored |
1276 * @param decsep the decimal separator |
2103 * @retval zero success |
1277 * @param groupsep each character in this string is treated as group separator and ignored during conversion |
2104 * @retval non-zero conversion was not possible |
1278 * @retval zero success |
2105 */ |
1279 * @retval non-zero conversion was not possible |
2106 #define cx_strtof(str, output) cx_strtof_lc_(cx_strcast(str), output, '.', ",") |
1280 */ |
|
1281 cx_attr_access_w(2) cx_attr_nonnull_arg(2) |
|
1282 int cx_strtof_lc(cxstring str, float *output, char decsep, const char *groupsep); |
|
1283 |
2107 |
1284 /** |
2108 /** |
1285 * Converts a string to a double precision floating point number. |
2109 * Converts a string to a double precision floating point number. |
1286 * |
2110 * |
1287 * The function returns non-zero when conversion is not possible. |
2111 * The function returns non-zero when conversion is not possible. |
1288 * In that case the function sets errno to EINVAL when the reason is an invalid character. |
2112 * In that case the function sets errno to EINVAL when the reason is an invalid character. |
1289 * It sets errno to ERANGE when the necessary representation would exceed the limits defined in libc's float.h. |
|
1290 * |
2113 * |
1291 * The decimal separator is assumed to be a dot character. |
2114 * The decimal separator is assumed to be a dot character. |
1292 * The comma character is treated as group separator and ignored during parsing. |
2115 * The comma character is treated as group separator and ignored during parsing. |
1293 * If you want to choose a different format, use cx_strtof_lc(). |
2116 * If you want to choose a different format, use cx_strtof_lc(). |
1294 * |
2117 * |
1295 * @param str the string to convert |
2118 * @param str the string to convert |
1296 * @param output a pointer to the float variable where the result shall be stored |
|
1297 * @param decsep the decimal separator |
|
1298 * @param groupsep each character in this string is treated as group separator and ignored during conversion |
|
1299 * @retval zero success |
|
1300 * @retval non-zero conversion was not possible |
|
1301 */ |
|
1302 cx_attr_access_w(2) cx_attr_nonnull_arg(2) |
|
1303 int cx_strtod_lc(cxstring str, double *output, char decsep, const char *groupsep); |
|
1304 |
|
1305 #ifndef CX_STR_IMPLEMENTATION |
|
1306 /** |
|
1307 * @copydoc cx_strtouz_lc() |
|
1308 */ |
|
1309 #define cx_strtos_lc(str, output, base, groupsep) cx_strtos_lc(cx_strcast(str), output, base, groupsep) |
|
1310 /** |
|
1311 * @copydoc cx_strtouz_lc() |
|
1312 */ |
|
1313 #define cx_strtoi_lc(str, output, base, groupsep) cx_strtoi_lc(cx_strcast(str), output, base, groupsep) |
|
1314 /** |
|
1315 * @copydoc cx_strtouz_lc() |
|
1316 */ |
|
1317 #define cx_strtol_lc(str, output, base, groupsep) cx_strtol_lc(cx_strcast(str), output, base, groupsep) |
|
1318 /** |
|
1319 * @copydoc cx_strtouz_lc() |
|
1320 */ |
|
1321 #define cx_strtoll_lc(str, output, base, groupsep) cx_strtoll_lc(cx_strcast(str), output, base, groupsep) |
|
1322 /** |
|
1323 * @copydoc cx_strtouz_lc() |
|
1324 */ |
|
1325 #define cx_strtoi8_lc(str, output, base, groupsep) cx_strtoi8_lc(cx_strcast(str), output, base, groupsep) |
|
1326 /** |
|
1327 * @copydoc cx_strtouz_lc() |
|
1328 */ |
|
1329 #define cx_strtoi16_lc(str, output, base, groupsep) cx_strtoi16_lc(cx_strcast(str), output, base, groupsep) |
|
1330 /** |
|
1331 * @copydoc cx_strtouz_lc() |
|
1332 */ |
|
1333 #define cx_strtoi32_lc(str, output, base, groupsep) cx_strtoi32_lc(cx_strcast(str), output, base, groupsep) |
|
1334 /** |
|
1335 * @copydoc cx_strtouz_lc() |
|
1336 */ |
|
1337 #define cx_strtoi64_lc(str, output, base, groupsep) cx_strtoi64_lc(cx_strcast(str), output, base, groupsep) |
|
1338 /** |
|
1339 * @copydoc cx_strtouz_lc() |
|
1340 */ |
|
1341 #define cx_strtoz_lc(str, output, base, groupsep) cx_strtoz_lc(cx_strcast(str), output, base, groupsep) |
|
1342 /** |
|
1343 * @copydoc cx_strtouz_lc() |
|
1344 */ |
|
1345 #define cx_strtous_lc(str, output, base, groupsep) cx_strtous_lc(cx_strcast(str), output, base, groupsep) |
|
1346 /** |
|
1347 * @copydoc cx_strtouz_lc() |
|
1348 */ |
|
1349 #define cx_strtou_lc(str, output, base, groupsep) cx_strtou_lc(cx_strcast(str), output, base, groupsep) |
|
1350 /** |
|
1351 * @copydoc cx_strtouz_lc() |
|
1352 */ |
|
1353 #define cx_strtoul_lc(str, output, base, groupsep) cx_strtoul_lc(cx_strcast(str), output, base, groupsep) |
|
1354 /** |
|
1355 * @copydoc cx_strtouz_lc() |
|
1356 */ |
|
1357 #define cx_strtoull_lc(str, output, base, groupsep) cx_strtoull_lc(cx_strcast(str), output, base, groupsep) |
|
1358 /** |
|
1359 * @copydoc cx_strtouz_lc() |
|
1360 */ |
|
1361 #define cx_strtou8_lc(str, output, base, groupsep) cx_strtou8_lc(cx_strcast(str), output, base, groupsep) |
|
1362 /** |
|
1363 * @copydoc cx_strtouz_lc() |
|
1364 */ |
|
1365 #define cx_strtou16_lc(str, output, base, groupsep) cx_strtou16_lc(cx_strcast(str), output, base, groupsep) |
|
1366 /** |
|
1367 * @copydoc cx_strtouz_lc() |
|
1368 */ |
|
1369 #define cx_strtou32_lc(str, output, base, groupsep) cx_strtou32_lc(cx_strcast(str), output, base, groupsep) |
|
1370 /** |
|
1371 * @copydoc cx_strtouz_lc() |
|
1372 */ |
|
1373 #define cx_strtou64_lc(str, output, base, groupsep) cx_strtou64_lc(cx_strcast(str), output, base, groupsep) |
|
1374 /** |
|
1375 * Converts a string to a number. |
|
1376 * |
|
1377 * The function returns non-zero when conversion is not possible. |
|
1378 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
1379 * It sets errno to ERANGE when the target datatype is too small. |
|
1380 * |
|
1381 * @param str the string to convert |
|
1382 * @param output a pointer to the integer variable where the result shall be stored |
|
1383 * @param base 2, 8, 10, or 16 |
|
1384 * @param groupsep each character in this string is treated as group separator and ignored during conversion |
|
1385 * @retval zero success |
|
1386 * @retval non-zero conversion was not possible |
|
1387 */ |
|
1388 #define cx_strtouz_lc(str, output, base, groupsep) cx_strtouz_lc(cx_strcast(str), output, base, groupsep) |
|
1389 |
|
1390 /** |
|
1391 * @copydoc cx_strtouz() |
|
1392 */ |
|
1393 #define cx_strtos(str, output, base) cx_strtos_lc(str, output, base, ",") |
|
1394 /** |
|
1395 * @copydoc cx_strtouz() |
|
1396 */ |
|
1397 #define cx_strtoi(str, output, base) cx_strtoi_lc(str, output, base, ",") |
|
1398 /** |
|
1399 * @copydoc cx_strtouz() |
|
1400 */ |
|
1401 #define cx_strtol(str, output, base) cx_strtol_lc(str, output, base, ",") |
|
1402 /** |
|
1403 * @copydoc cx_strtouz() |
|
1404 */ |
|
1405 #define cx_strtoll(str, output, base) cx_strtoll_lc(str, output, base, ",") |
|
1406 /** |
|
1407 * @copydoc cx_strtouz() |
|
1408 */ |
|
1409 #define cx_strtoi8(str, output, base) cx_strtoi8_lc(str, output, base, ",") |
|
1410 /** |
|
1411 * @copydoc cx_strtouz() |
|
1412 */ |
|
1413 #define cx_strtoi16(str, output, base) cx_strtoi16_lc(str, output, base, ",") |
|
1414 /** |
|
1415 * @copydoc cx_strtouz() |
|
1416 */ |
|
1417 #define cx_strtoi32(str, output, base) cx_strtoi32_lc(str, output, base, ",") |
|
1418 /** |
|
1419 * @copydoc cx_strtouz() |
|
1420 */ |
|
1421 #define cx_strtoi64(str, output, base) cx_strtoi64_lc(str, output, base, ",") |
|
1422 /** |
|
1423 * @copydoc cx_strtouz() |
|
1424 */ |
|
1425 #define cx_strtoz(str, output, base) cx_strtoz_lc(str, output, base, ",") |
|
1426 /** |
|
1427 * @copydoc cx_strtouz() |
|
1428 */ |
|
1429 #define cx_strtous(str, output, base) cx_strtous_lc(str, output, base, ",") |
|
1430 /** |
|
1431 * @copydoc cx_strtouz() |
|
1432 */ |
|
1433 #define cx_strtou(str, output, base) cx_strtou_lc(str, output, base, ",") |
|
1434 /** |
|
1435 * @copydoc cx_strtouz() |
|
1436 */ |
|
1437 #define cx_strtoul(str, output, base) cx_strtoul_lc(str, output, base, ",") |
|
1438 /** |
|
1439 * @copydoc cx_strtouz() |
|
1440 */ |
|
1441 #define cx_strtoull(str, output, base) cx_strtoull_lc(str, output, base, ",") |
|
1442 /** |
|
1443 * @copydoc cx_strtouz() |
|
1444 */ |
|
1445 #define cx_strtou8(str, output, base) cx_strtou8_lc(str, output, base, ",") |
|
1446 /** |
|
1447 * @copydoc cx_strtouz() |
|
1448 */ |
|
1449 #define cx_strtou16(str, output, base) cx_strtou16_lc(str, output, base, ",") |
|
1450 /** |
|
1451 * @copydoc cx_strtouz() |
|
1452 */ |
|
1453 #define cx_strtou32(str, output, base) cx_strtou32_lc(str, output, base, ",") |
|
1454 /** |
|
1455 * @copydoc cx_strtouz() |
|
1456 */ |
|
1457 #define cx_strtou64(str, output, base) cx_strtou64_lc(str, output, base, ",") |
|
1458 /** |
|
1459 * Converts a string to a number. |
|
1460 * |
|
1461 * The function returns non-zero when conversion is not possible. |
|
1462 * In that case the function sets errno to EINVAL when the reason is an invalid character or an unsupported base. |
|
1463 * It sets errno to ERANGE when the target datatype is too small. |
|
1464 * |
|
1465 * The comma character is treated as group separator and ignored during parsing. |
|
1466 * If you want to choose the set of group separators, use the @c _lc variant of this function (e.g. cx_strtouz_lc()). |
|
1467 * |
|
1468 * @param str the string to convert |
|
1469 * @param output a pointer to the integer variable where the result shall be stored |
|
1470 * @param base 2, 8, 10, or 16 |
|
1471 * @retval zero success |
|
1472 * @retval non-zero conversion was not possible |
|
1473 */ |
|
1474 #define cx_strtouz(str, output, base) cx_strtouz_lc(str, output, base, ",") |
|
1475 |
|
1476 /** |
|
1477 * Converts a string to a single precision floating point number. |
|
1478 * |
|
1479 * The function returns non-zero when conversion is not possible. |
|
1480 * In that case the function sets errno to EINVAL when the reason is an invalid character. |
|
1481 * It sets errno to ERANGE when the necessary representation would exceed the limits defined in libc's float.h. |
|
1482 * |
|
1483 * The decimal separator is assumed to be a dot character. |
|
1484 * The comma character is treated as group separator and ignored during parsing. |
|
1485 * If you want to choose a different format, use cx_strtof_lc(). |
|
1486 * |
|
1487 * @param str the string to convert |
|
1488 * @param output a pointer to the float variable where the result shall be stored |
|
1489 * @param decsep the decimal separator |
|
1490 * @param groupsep each character in this string is treated as group separator and ignored during conversion |
|
1491 * @retval zero success |
|
1492 * @retval non-zero conversion was not possible |
|
1493 */ |
|
1494 #define cx_strtof_lc(str, output, decsep, groupsep) cx_strtof_lc(cx_strcast(str), output, decsep, groupsep) |
|
1495 /** |
|
1496 * Converts a string to a double precision floating point number. |
|
1497 * |
|
1498 * The function returns non-zero when conversion is not possible. |
|
1499 * In that case the function sets errno to EINVAL when the reason is an invalid character. |
|
1500 * |
|
1501 * The decimal separator is assumed to be a dot character. |
|
1502 * The comma character is treated as group separator and ignored during parsing. |
|
1503 * If you want to choose a different format, use cx_strtof_lc(). |
|
1504 * |
|
1505 * @param str the string to convert |
|
1506 * @param output a pointer to the double variable where the result shall be stored |
2119 * @param output a pointer to the double variable where the result shall be stored |
1507 * @param decsep the decimal separator |
2120 * @retval zero success |
1508 * @param groupsep each character in this string is treated as group separator and ignored during conversion |
2121 * @retval non-zero conversion was not possible |
1509 * @retval zero success |
2122 */ |
1510 * @retval non-zero conversion was not possible |
2123 #define cx_strtod(str, output) cx_strtod_lc_(cx_strcast(str), output, '.', ",") |
1511 */ |
|
1512 #define cx_strtod_lc(str, output, decsep, groupsep) cx_strtod_lc(cx_strcast(str), output, decsep, groupsep) |
|
1513 |
|
1514 /** |
|
1515 * Converts a string to a single precision floating point number. |
|
1516 * |
|
1517 * The function returns non-zero when conversion is not possible. |
|
1518 * In that case the function sets errno to EINVAL when the reason is an invalid character. |
|
1519 * It sets errno to ERANGE when the necessary representation would exceed the limits defined in libc's float.h. |
|
1520 * |
|
1521 * The decimal separator is assumed to be a dot character. |
|
1522 * The comma character is treated as group separator and ignored during parsing. |
|
1523 * If you want to choose a different format, use cx_strtof_lc(). |
|
1524 * |
|
1525 * @param str the string to convert |
|
1526 * @param output a pointer to the float variable where the result shall be stored |
|
1527 * @retval zero success |
|
1528 * @retval non-zero conversion was not possible |
|
1529 */ |
|
1530 #define cx_strtof(str, output) cx_strtof_lc(str, output, '.', ",") |
|
1531 /** |
|
1532 * Converts a string to a double precision floating point number. |
|
1533 * |
|
1534 * The function returns non-zero when conversion is not possible. |
|
1535 * In that case the function sets errno to EINVAL when the reason is an invalid character. |
|
1536 * |
|
1537 * The decimal separator is assumed to be a dot character. |
|
1538 * The comma character is treated as group separator and ignored during parsing. |
|
1539 * If you want to choose a different format, use cx_strtof_lc(). |
|
1540 * |
|
1541 * @param str the string to convert |
|
1542 * @param output a pointer to the double variable where the result shall be stored |
|
1543 * @retval zero success |
|
1544 * @retval non-zero conversion was not possible |
|
1545 */ |
|
1546 #define cx_strtod(str, output) cx_strtod_lc(str, output, '.', ",") |
|
1547 |
|
1548 #endif |
|
1549 |
2124 |
1550 #ifdef __cplusplus |
2125 #ifdef __cplusplus |
1551 } // extern "C" |
2126 } // extern "C" |
1552 #endif |
2127 #endif |
1553 |
2128 |