mirror of
https://git.planet-casio.com/Slyvtt/Collab_RPG.git
synced 2025-01-01 06:23:40 +01:00
10 lines
136 B
C
10 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
|
||
|
|