Imported Upstream version 2.6.4

This commit is contained in:
Arnaud Quette 2012-06-01 15:55:19 +02:00
parent fad6ced6f6
commit fefe62b2bd
257 changed files with 6020 additions and 1394 deletions

View file

@ -17,6 +17,13 @@ typedef struct enum_s {
struct enum_s *next;
} enum_t;
/* RANGE boundaries */
typedef struct range_s {
int min;
int max;
struct range_s *next;
} range_t;
/* list of instant commands */
typedef struct cmdlist_s {
char *name;