mirror of
https://git.planet-casio.com/Slyvtt/Collab_RPG.git
synced 2025-07-06 20:46:42 +02: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
|
|
|