big: Split up mul into internal and public parts.

This commit is contained in:
Jeroen van Rijn
2021-08-11 20:59:53 +02:00
parent 9858989b1c
commit f8442e0524
6 changed files with 316 additions and 280 deletions
+5
View File
@@ -24,6 +24,11 @@ PyRes :: struct {
err: Error,
}
@export test_initialize_constants :: proc "c" () -> (res: int) {
context = runtime.default_context();
return initialize_constants();
}
@export test_error_string :: proc "c" (err: Error) -> (res: cstring) {
context = runtime.default_context();
es := Error_String;