Skip to content

Instantly share code, notes, and snippets.

View pavel-odintsov's full-sized avatar
🛡️
On mission to deliver affordable DDoS protection

Pavel Odintsov pavel-odintsov

🛡️
On mission to deliver affordable DDoS protection
View GitHub Profile
@MrPeanutButta
MrPeanutButta / bit_flip.c
Created May 1, 2013 22:40
useful bitflip. designing software DIR-24-8-basic.
/*
* for use with software DIR-24-8-basic.
* personal implementation.
*/
void flip_state(uint32_t &prefix, uint8_t &position){
prefix = prefix ^ 1<<position;
}