hpdg 0.1.0

Rust-first data generator for competitive programming and OI workflows.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Experimental C ABI bindings.

#[cfg(feature = "c-bindings")]
use std::os::raw::c_char;

#[cfg(feature = "c-bindings")]
#[unsafe(no_mangle)]
/// Return the crate version string for C callers.
pub extern "C" fn hpdg_version() -> *const c_char {
    std::ptr::null()
}