@yuuang/ffi-rs-linux-arm64-musl
Advanced tools
Comparing version 1.0.20 to 1.0.21
{ | ||
"name": "@yuuang/ffi-rs-linux-arm64-musl", | ||
"version": "1.0.20", | ||
"version": "1.0.21", | ||
"os": [ | ||
@@ -5,0 +5,0 @@ "linux" |
@@ -122,2 +122,5 @@ # ffi-rs | ||
double doubleProps; | ||
char **stringArray; | ||
double *doubleArray; | ||
int *i32Array; | ||
} Person; | ||
@@ -129,2 +132,7 @@ | ||
printf("doubleProps: %f \n", person->doubleProps); | ||
printf("stringArray: %s\n", person->stringArray[0]); | ||
printf("stringArray: %s\n", person->stringArray[1]); | ||
printf("doubleArray: %f\n", person->doubleArray[0]); | ||
printf("doubleArray: %f\n", person->doubleArray[1]); | ||
printf("i32Array: %d\n", person->i32Array[0]); | ||
return person; | ||
@@ -131,0 +139,0 @@ } |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
521727
265