()
| 49 | static mut ENV_SLICE: &[u8] = b""; |
| 50 | |
| 51 | pub fn get_args() -> &'static [u8] { |
| 52 | // Note: Only reading from static mut once program starts |
| 53 | return unsafe{ ARGS_SLICE }; |
| 54 | } |
| 55 | |
| 56 | pub fn get_env() -> &'static [u8] { |
| 57 | return unsafe{ ENV_SLICE }; |