Fix import paths

This commit is contained in:
gingerBill
2020-11-12 14:20:33 +00:00
parent 78b6948ff2
commit fa284f9a5a
2 changed files with 3 additions and 1 deletions

View File

@@ -1,5 +1,8 @@
package strings
import "core:unicode"
import "core:unicode/utf8"
to_valid_utf8 :: proc(s, replacement: string, allocator := context.allocator) -> string {
if len(s) == 0 {
return "";

View File

@@ -1,7 +1,6 @@
package strings
import "core:mem"
import "core:unicode"
import "core:unicode/utf8"
clone :: proc(s: string, allocator := context.allocator, loc := #caller_location) -> string {