status-go/cmd/library
RichΛrd 192ca6e319
feat: add function to free memory (#2344)
2021-08-31 15:17:44 -04:00
..
README.md Address feedback 2020-06-03 11:07:04 +02:00
const.go Address feedback 2020-06-03 11:07:04 +02:00
main.go feat: add function to free memory (#2344) 2021-08-31 15:17:44 -04:00

README.md

Library bindings

This unholy namespace generates C bindings for mobile/. It does so by parsing the go files, identify any public function in the namespace that is not a test file, and generate an equivalent function with the correct C signature, which will then just call the version in mobile/.

This method is ad-hoc and not bullet-proof, the main limitation is that only some types are supported for now, C.int, *C.char and unsafer.Pointer. Functions that do not use these types will be ignored.

The problem this sledgehammer solves is to have to keep in sync the two namespaces, which is fiddly and prone to error as they are modified by either teams.