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. :)
15 lines
222 B
C
15 lines
222 B
C
#ifndef SRVSTATS_H
|
|
#define SRVSTATS_H
|
|
|
|
#include "screen.h"
|
|
|
|
|
|
extern screen *server_screen;
|
|
|
|
int server_screen_init ();
|
|
int update_server_screen (int timer);
|
|
int no_screen_screen (int timer);
|
|
int goodbye_screen ();
|
|
|
|
#endif
|