#[no_mangle]
pub unsafe extern "C" fn wasmer_version_major() -> u8
Expand description

Get the major version of the Wasmer C API.

See wasmer_version to learn more.

Example

int main() {
    // Get and print the version components.
    uint8_t version_major = wasmer_version_major();
    uint8_t version_minor = wasmer_version_minor();
    uint8_t version_patch = wasmer_version_patch();

    printf("%d.%d.%d", version_major, version_minor, version_patch);

    return 0;
}