File tree 2 files changed +2375
-2370
lines changed
2 files changed +2375
-2370
lines changed Original file line number Diff line number Diff line change 1
- /* auto-generated on 2024-12-18 09:44:34 -0500. Do not edit! */
1
+ /* auto-generated on 2025-03-08 13:17:11 -0500. Do not edit! */
2
2
/* begin file include/idna.h */
3
3
#ifndef ADA_IDNA_H
4
4
#define ADA_IDNA_H
@@ -150,15 +150,14 @@ std::string to_unicode(std::string_view input);
150
150
151
151
namespace ada ::idna {
152
152
153
- // Access the first code point of the input string.
154
153
// Verify if it is valid name code point given a Unicode code point and a
155
154
// boolean first: If first is true return the result of checking if code point
156
155
// is contained in the IdentifierStart set of code points. Otherwise return the
157
156
// result of checking if code point is contained in the IdentifierPart set of
158
157
// code points. Returns false if the input is empty or the code point is not
159
158
// valid. There is minimal Unicode error handling: the input should be valid
160
159
// UTF-8. https://urlpattern.spec.whatwg.org/#is-a-valid-name-code-point
161
- bool valid_name_code_point (char32_t input , bool first);
160
+ bool valid_name_code_point (char32_t code_point , bool first);
162
161
163
162
} // namespace ada::idna
164
163
You can’t perform that action at this time.
0 commit comments