mirror of
https://git.planet-casio.com/Slyvtt/Collab_RPG.git
synced 2025-07-02 02:36:34 +02:00
15 lines
329 B
C
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
|
|
|