diff options
| author | Joel Challis | 2023-11-26 19:36:45 +0100 |
|---|---|---|
| committer | GitHub | 2023-11-26 19:36:45 +0100 |
| commit | 1ed03f498fa204178c2696c510ac6a2cd8524e2d (patch) | |
| tree | b97c1f983b7e4b57c007d0feedadd3ad3e39062b /users/d4mation/zalgo.c | |
| parent | 4908d4b1ca260efecf3613e6517aa3a6f2034876 (diff) | |
Remove userspace keymaps (#22544)
Diffstat (limited to 'users/d4mation/zalgo.c')
| -rw-r--r-- | users/d4mation/zalgo.c | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/users/d4mation/zalgo.c b/users/d4mation/zalgo.c deleted file mode 100644 index 3a1688e053..0000000000 --- a/users/d4mation/zalgo.c +++ /dev/null @@ -1,21 +0,0 @@ -#include "zalgo.h" - -void zalgo_text( uint16_t keycode ) { - - tap_code( keycode ); - - int number = ( rand() % ( 8 + 1 - 2 ) ) + 2; - unsigned int index; - - unicode_input_start(); - - for ( index = 0; index < number; index++ ) { - - uint16_t hex = ( rand() % ( 0x036F + 1 - 0x0300 ) ) + 0x0300; - register_hex( hex ); - - } - - unicode_input_finish(); - -}
\ No newline at end of file |