Collab_RPG/src/memory.h

9 lines
136 B
C

#ifndef MEMORY_H
#define MEMORY_H
#include <stdbool.h>
bool is_in(short int *array, short int array_length, short int item);
#endif