BMOSP/include/mod.h

21 lines
633 B
C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* mod.h
* Заголовочный файл с функциями работы с памятью
*
* Данный заголовочный файл содержит определения, которые используются для
* работы с памятью
*
*/
#ifndef MOD_H
#define MOD_H
// Максимальное количество модулей 16. Позже перепишем на динамический массив,
// сейчас для прототипа это не так важно
#define MOD_MAX 16
void mod_init( );
void mod_list_show( );
void mod_find(char *name);
#endif // mod.h