Passed *every* piece of source in this project through indent. I'm setting things up with ctags soon and am actually going to *gasp* use a nice programming environment to continue development in. :)
12 lines
156 B
C
12 lines
156 B
C
#ifndef MEM_H
|
|
#define MEM_H
|
|
|
|
int mem_init ();
|
|
int mem_close ();
|
|
|
|
int mem_screen (int rep, int display);
|
|
int mem_top_screen (int rep, int display);
|
|
|
|
|
|
#endif
|