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
+10 -11
View File
@@ -6,21 +6,20 @@
#define CLIENT_NAME_SIZE 256
typedef struct client_data
{
int ack;
char *name;
// and other stuff... doesn't matter yet
LL * screenlist;
// list of accepted keys... (?)
LL * menulist;
typedef struct client_data {
int ack;
char *name;
// and other stuff... doesn't matter yet
LL *screenlist;
// list of accepted keys... (?)
LL *menulist;
} client_data;
// sets up an existing (empty) client_data struct
int client_data_init(client_data *d);
int client_data_init (client_data * d);
// destroys members of a client's data
int client_data_destroy(client_data *d);
int client_data_destroy (client_data * d);
#endif