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