Rename load_from_slice to load_from_bytes across core

This commit is contained in:
gingerBill
2022-05-14 14:55:15 +01:00
parent e46d87b221
commit 9c1f270bd5
5 changed files with 19 additions and 21 deletions
+1 -1
View File
@@ -45,7 +45,7 @@ main :: proc() {
if len(args) < 2 {
stderr("No input file specified.\n")
err := load(slice=TEST, buf=&buf, known_gzip_size=len(TEST))
err := load(data=TEST, buf=&buf, known_gzip_size=len(TEST))
if err == nil {
stdout("Displaying test vector: ")
stdout(bytes.buffer_to_string(&buf))