Start on decode_code_point()

This commit is contained in:
Josh Holtrop 2021-06-29 23:17:44 -04:00
parent 3ce54bd303
commit 651461c570

View File

@ -63,6 +63,13 @@ class <%= classname %>
private static string lex_token(const(ubyte)[] * input)
{
uint code_point_length;
uint code_point = decode_code_point(input, &code_point_length);
return null;
}
private static uint decode_code_point(const(ubyte)[] * input, uint * code_point_length)
{
return 0u;
}
}