"UNIX is very simple" - Dennis Ritchie
"GNU's Not UNIX" - Richard Stallman

Daily Random Snippet

The following is a random code snippet that features a unique feature or syntax.

#include 
uint32_t rotl32(uint32_t x, uint32_t n)
{
	return (x << n) | (x >> (32 - n));
}

Other resources