Skip to content

Instantly share code, notes, and snippets.

@kkroesch
Created December 13, 2019 09:17
Show Gist options
  • Save kkroesch/c3dfe6b07e032b1c5bf4f5e47b2d15bf to your computer and use it in GitHub Desktop.
Save kkroesch/c3dfe6b07e032b1c5bf4f5e47b2d15bf to your computer and use it in GitHub Desktop.
Self-explaining memory sizes
#define KB *(1 << 10)
#define MB *(1 << 20)
#define GB *(1U << 30)
int buffer = 64 KB;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment