6 lines
111 B
Plaintext

if (!array || array->count >= array->capacity) {{
return;
}}
array->items[(array->count)++] = item;