Skip to content

Instantly share code, notes, and snippets.

@dmikis

dmikis/a.h Secret

Created December 18, 2019 14:33
Show Gist options
  • Save dmikis/bddf84afd5a00a8b837374e9ced58696 to your computer and use it in GitHub Desktop.
Save dmikis/bddf84afd5a00a8b837374e9ced58696 to your computer and use it in GitHub Desktop.
__crt_countof
extern "C++"
{
template <typename _CountofType, size_t _SizeOfArray>
char (*__countof_helper(_UNALIGNED _CountofType (&_Array)[_SizeOfArray]))[_SizeOfArray];
#define __crt_countof(_Array) (sizeof(*__countof_helper(_Array)) + 0)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment