rsspice 0.1.0

Pure Rust port of the SPICE Toolkit for space geometry
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//
// GENERATED FILE
//

use super::*;
use f2rust_std::*;

//$Procedure      ZZREPT ( Private --- replace tokens )
pub fn ZZREPT(SUB: &[u8], REPLAC: &[u8], L2R: bool, ctx: &mut Context) -> bool {
    let mut ZZREPT: bool = false;
    let mut OK: bool = false;

    ZZREPT = ZZSUBT(SUB, REPLAC, L2R, ctx);
    OK = ZZREMT(b"*", ctx);

    ZZREPT
}