Skip to content

Instantly share code, notes, and snippets.

@loslch
Created July 10, 2018 06:22
Show Gist options
  • Save loslch/32e911a6ee950711e358f92012cbf86c to your computer and use it in GitHub Desktop.
Save loslch/32e911a6ee950711e358f92012cbf86c to your computer and use it in GitHub Desktop.
Static Assert in C
#define STATIC_ASSERT(e) \
typedef char __static_assert[(e) ? 1 : -1]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment