Collab_RPG/src/memory.h
2024-07-25 13:07:19 +02:00

15 lines
329 B
C

#ifndef MEMORY_H
#define MEMORY_H
#include <stdbool.h>
/* 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