1
- /* auto-generated on 2024-12-10 14:54:53 -0500. Do not edit! */
1
+ /* auto-generated on 2024-12-17 14:54:59 -0500. Do not edit! */
2
2
/* begin file include/simdutf.h */
3
3
#ifndef SIMDUTF_H
4
4
#define SIMDUTF_H
@@ -675,7 +675,7 @@ SIMDUTF_DISABLE_UNDESIRED_WARNINGS
675
675
#define SIMDUTF_SIMDUTF_VERSION_H
676
676
677
677
/* * The version of simdutf being used (major.minor.revision) */
678
- #define SIMDUTF_VERSION " 5.6.4 "
678
+ #define SIMDUTF_VERSION " 5.7.0 "
679
679
680
680
namespace simdutf {
681
681
enum {
@@ -686,11 +686,11 @@ enum {
686
686
/* *
687
687
* The minor version (major.MINOR.revision) of simdutf being used.
688
688
*/
689
- SIMDUTF_VERSION_MINOR = 6 ,
689
+ SIMDUTF_VERSION_MINOR = 7 ,
690
690
/* *
691
691
* The revision (major.minor.REVISION) of simdutf being used.
692
692
*/
693
- SIMDUTF_VERSION_REVISION = 4
693
+ SIMDUTF_VERSION_REVISION = 0
694
694
};
695
695
} // namespace simdutf
696
696
@@ -2702,6 +2702,9 @@ simdutf_warn_unused size_t trim_partial_utf16(const char16_t *input,
2702
2702
size_t length);
2703
2703
2704
2704
// base64_options are used to specify the base64 encoding options.
2705
+ // ASCII spaces are ' ', '\t', '\n', '\r', '\f'
2706
+ // garbage characters are characters that are not part of the base64 alphabet
2707
+ // nor ASCII spaces.
2705
2708
enum base64_options : uint64_t {
2706
2709
base64_default = 0 , /* standard base64 format (with padding) */
2707
2710
base64_url = 1 , /* base64url format (no padding) */
@@ -2711,6 +2714,10 @@ enum base64_options : uint64_t {
2711
2714
base64_reverse_padding, /* standard base64 format without padding */
2712
2715
base64_url_with_padding =
2713
2716
base64_url | base64_reverse_padding, /* base64url with padding */
2717
+ base64_default_accept_garbage =
2718
+ 4 , /* standard base64 format accepting garbage characters */
2719
+ base64_url_accept_garbage =
2720
+ 5 , /* base64url format accepting garbage characters */
2714
2721
};
2715
2722
2716
2723
// last_chunk_handling_options are used to specify the handling of the last
0 commit comments