Collab_RPG/src/memory.h

10 lines
136 B
C
Raw Normal View History

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