#include <stdio.h>
#include <string.h>
{
printf("%s\n", (char *)data);
}
int
{
const char* strings[] = {
"helo", "hera", "starbuck", "kat", "boomer",
"hotdog", "longshot", "jammer", "crashdown", "hardball",
"duck", "racetrack", "apolo", "husker", "freaker",
"skulls", "bulldog", "flat top", "hammerhead", "gonzo"
};
unsigned int i;
for (i = 0; i < 20; i++)
return 0;
}
EAPI void eina_array_step_set(Eina_Array *array, unsigned int sizeof_eina_array, unsigned int step)
Sets the step of an array.
Definition: eina_array.c:305
static Eina_Bool eina_array_foreach(Eina_Array *array, Eina_Each_Cb cb, void *fdata)
Iterates over an array using a callback function.
EAPI int eina_init(void)
Initializes the Eina library.
Definition: eina_main.c:279
EAPI Eina_Bool static Eina_Bool eina_array_push(Eina_Array *array, const void *data) EINA_ARG_NONNULL(1
Appends a data item to an array.
EAPI int eina_shutdown(void)
Shuts down the Eina library.
Definition: eina_main.c:350
static void * eina_array_data_get(const Eina_Array *array, unsigned int idx) EINA_ARG_NONNULL(1)
Returns the data at a given position in an array.