#ifndef MEMORY_H #define MEMORY_H #include /* memory_is_in() * * returns true if item is in array. * array: The array to search in. * array_length: The length of the array. * item: The item to search for. */ bool memory_is_in(short int *array, short int array_length, short int item); #endif