mirror of
https://github.com/clockworkpi/DevTerm.git
synced 2025-12-13 02:38:50 +01:00
14 lines
337 B
C
14 lines
337 B
C
/*
|
|
* ALGO : PROJ. : Volume
|
|
* RESEARCH : File : space.h
|
|
* : Date : 20100531.0725UTC
|
|
* : Email : mail@algoresearch.net
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
|
|
void create_space(SYS_TABLE *sys, int w, int h, int d);
|
|
void iterative_space (SYS_TABLE *sys);
|
|
int cell_get(SYS_TABLE *sys, int x, int y, int z);
|