Skip to content

Instantly share code, notes, and snippets.

@acdimalev
Created September 20, 2018 06:21
Show Gist options
  • Save acdimalev/45612b3200597d4d25d456388e9c5c57 to your computer and use it in GitHub Desktop.
Save acdimalev/45612b3200597d4d25d456388e9c5c57 to your computer and use it in GitHub Desktop.
// KI25 -- Keep It 2hort 5tupid
// TABA -- These Are Bad Acronyms
// - (probably) bad variable names
// - horrible function names
// - reserve for extremely common stuff
#define si static inline
#include <stdint.h>
typedef uint8_t u8 ;
typedef int8_t s8 ;
typedef uint16_t u16 ;
typedef int16_t s16 ;
typedef uint32_t u32 ;
typedef int32_t s32 ;
typedef float f32 ;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment