Removed lcddriver.c (doesn't do anything, isn't in any makefiles, etc.).

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. :)
This commit is contained in:
William Ferrell
2000-03-30 20:20:41 +00:00
parent 2222adcfbe
commit f5a5e9653b
88 changed files with 8207 additions and 8723 deletions
+7 -9
View File
@@ -3,7 +3,7 @@
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#endif
/*
contains a few things that other parts of the program might want
@@ -14,22 +14,20 @@ extern char *version;
extern char *protocol_version;
extern char *build_date;
void exit_program(int val);
void exit_program (int val);
// 1/8th second is a single time unit...
#define TIME_UNIT 125000
// But I plan to double the framerate soon, or make it variable...
//#define TIME_UNIT (125000/2)
typedef struct screen_size
{
char * size;
int wid, hgt;
typedef struct screen_size {
char *size;
int wid, hgt;
} screen_size;
typedef struct parameter
{
char * sh, * lg; // short and long versions
typedef struct parameter {
char *sh, *lg; // short and long versions
} parameter;