mirror of
https://git.planet-casio.com/Slyvtt/Collab_RPG.git
synced 2024-12-29 13:03:43 +01:00
9 lines
136 B
C
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
|
|
|