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
//
// GENERATED FILE
//

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

//$Procedure  ZZTKNERR ( Create ZZTOKNS overflow error message )
pub fn ZZTKNERR(TEMPLT: &[u8], STRING: &[u8], TOKEN: &[u8], ERROR: &mut [u8], STATUS: &mut bool) {
    REPMC(TEMPLT, b"#", STRING, ERROR);
    REPMC(&ERROR.to_vec(), b"#", TOKEN, ERROR);
    *STATUS = false;
}