You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Replace manual array size calculation with ARRAY_LEN macro
This commit introduces the ARRAY_LEN macro to simplify array length calculations
by replacing occurrences of `sizeof(a)/sizeof(a[0])` with `ARRAY_LEN(a)`.
0 commit comments