1//! External function declarations 2 3use super::FipsType; 4 5#[derive(Debug,PartialEq)] 6pub struct ExternFunctionDecl { 7 pub name: String, 8 pub parameter_types: Vec<FipsType>, 9 pub return_type: FipsType 10}