mathtex-portable-engine-generated 0.1.2

Machine generated portable TeX engine core for mathtex, translated from the TeX, eTeX and XeTeX sources
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Profile-specific (xetex-only) patched functions.
//! Generated by `cargo run -p mathtex-web2c-import --bin patch_engine`.
//!
//! These are functions whose XeTeX body cannot be folded into the shared core
//! and must be dispatched on the active engine profile. The patcher routes
//! XeTeX-only patches here, each guarded so non-XeTeX profiles return early.
//!
//! With the current C2Rust inputs there are no such functions, so this is an
//! empty scaffold rather than fabricated content.

#![allow(dead_code, non_camel_case_types, non_snake_case, unused_assignments, unused_must_use, unused_mut, unused_variables)]

use crate::runtime::*;

impl<'resources> PortableTexEngine<'resources> {

}