website/versioned_docs/version-3.x/core-library/creating-bindings.md
H3 is a C library, in part to make it simpler to create bindings for different programming languages. Each language usually has its own way to bind to C functions, but this document can serve as a starting point and list of tips.
There may already be H3 bindings available for your language of choice.
The make binding-functions target produces a file binding-functions containing a list of function in the H3 public API, one per line. You can use this as part of your build process to check how much of the H3 public API your bindings expose. This list does not include memory management functions that are needed to allocate arrays to be passed to the H3 API.
Keeping similar names and purposes for functions can make it easier for your users to use the H3 API Reference.
When ready, make a pull request to add your binding to the H3 documentation website.
To be included in the H3 API reference, your binding should:
make binding-functions. For example, stringToH3 may not be necessary if your bindings only supports string H3 indexes.