android-rust-cli 0.3.2

A CLI tool for generating Android Rust JNI templates in a single command
1
2
3
4
5
6
7
8
9
10
#ifndef RUSTIOS_H
#define RUSTIOS_H

#include <stdint.h>

char* rust_greeting_c(const char* name);
void rust_greeting_free(char* s);
uint64_t fibonacci_c(uint32_t n);

#endif