Use "String" consistently for "char[]" (#694)

Use "String" consistently for "char[]". Fix win32 return value.
This commit is contained in:
Christoffer Lerno
2023-01-07 22:50:33 +01:00
committed by GitHub
parent 5b2b4e900f
commit 43dc2d650c
62 changed files with 273 additions and 246 deletions

View File

@@ -6,7 +6,7 @@ fn void! rc_crypt() @test
Rc4 rc;
rc.init(&&x"63727970746969");
char[200] x;
char[] text = "The quick brown fox jumps over the lazy dog.";
String text = "The quick brown fox jumps over the lazy dog.";
rc.crypt(text, &x);
char[*] res = x"2ac2fecdd8fbb84638e3a4
820eb205cc8e29c28b9d5d