mirror of
https://github.com/mangosfour/server.git
synced 2025-12-20 07:37:02 +00:00
[11585] Add countof macro
It can be used to calculate number of elements in static array. Do not use with pointers!
This commit is contained in:
parent
3788348b46
commit
4c81559800
3 changed files with 9 additions and 5 deletions
|
|
@ -250,4 +250,8 @@ inline char * mangos_strdup(const char * source)
|
|||
# define M_PI_F float(M_PI)
|
||||
#endif
|
||||
|
||||
#ifndef countof
|
||||
#define countof(array) (sizeof(array) / sizeof((array)[0]))
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue