Major code refactoring

- Configurable key and mouse mappings in config.h
- Put event handling code from main.c into events.[ch]
This commit is contained in:
Bert
2011-07-26 18:01:29 +02:00
parent a271e16744
commit b8ff1677b1
12 changed files with 808 additions and 648 deletions

8
util.c
View File

@ -26,8 +26,10 @@
#include "options.h"
#include "util.h"
#define DNAME_CNT 512
#define FNAME_LEN 1024
enum {
DNAME_CNT = 512,
FNAME_LEN = 1024
};
void cleanup();
@ -78,7 +80,7 @@ void size_readable(float *size, const char **unit) {
const char *units[] = { "", "K", "M", "G" };
int i;
for (i = 0; i < LEN(units) && *size > 1024; ++i)
for (i = 0; i < LEN(units) && *size > 1024; i++)
*size /= 1024;
*unit = units[MIN(i, LEN(units) - 1)];
}