artichoke_backend/extn/stdlib/cmath/
mod.rs

1use std::ffi::CStr;
2
3use crate::extn::prelude::*;
4
5const CMATH_CSTR: &CStr = c"CMath";
6static CMATH_RUBY_SOURCE: &[u8] = include_bytes!("vendor/cmath.rb");
7
8pub fn init(interp: &mut Artichoke) -> InitializeResult<()> {
9    let spec = module::Spec::new(interp, "CMath", CMATH_CSTR, None)?;
10    interp.def_module::<CMath>(spec)?;
11    interp.def_rb_source_file("cmath.rb", CMATH_RUBY_SOURCE)?;
12
13    Ok(())
14}
15
16#[derive(Debug, Clone, Copy)]
17pub struct CMath;