Rust Pros Bindgen

Generate PROS bindings to rust

Requirements

Useage

In build.rs ```rust use pros_bindgen::bindgen;

fn main(){ bindgen(); } ```

In some file to import the bindings ```rust

![allow(nonuppercase_globals)]

![allow(noncamelcase_types)]

![allow(nonsnakecase)]

![allow(dead_code)]

include!(concat!(env!("OUT_DIR"), "/bindings.rs")); ```

What header modifications

If you want to use it, make an issue and I'll document it.