1
 2
 3
 4
 5
 6
 7
 8
 9
10
#![no_std]

pub enum ProgramState {
	Normal,
	Resident,
}

pub static mut PROGRAM_STATE: ProgramState = ProgramState::Normal;

pub static mut ARGUMENTS: Option<&[*const cty::c_char]> = None;