Lines Matching full:element
35 functions walk linearly through an array and compare each element with
41 points to an element that matches the one that is searched.
45 The width of one element (i.e., the size as returned by
59 If no matching element was found in the array,
63 into the position after the last element and increments the
72 return a pointer to the first element found.
73 If no element was found,
75 returns a pointer to the newly added element, whereas
104 void *element;
115 if (element != NULL)
116 printf("Element found: %d\en", *(int *)element);
118 printf("Element not found\en");