catlock 0.1.8

Defend keyboard against your cat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
This is free and unencumbered software released into the public domain.
For more information, please refer to <http://unlicense.org>
*/

#![allow(non_upper_case_globals)]

#[path= "./cats.rs"]
pub mod cats;

/** password to unlock console */
pub const unlock_pw : &[u8] = b"notacat";

/** ignored keystrokes */
pub const ignored_keys : [u8;3] = *b"\r\n ";