diff options
Diffstat (limited to 'libibex/ibex_internal.h')
-rw-r--r-- | libibex/ibex_internal.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/libibex/ibex_internal.h b/libibex/ibex_internal.h new file mode 100644 index 0000000000..1aabfb98c0 --- /dev/null +++ b/libibex/ibex_internal.h @@ -0,0 +1,26 @@ +/* + Copyright 2000 Helix Code Inc. +*/ +#include <glib.h> + +#include "ibex.h" + +#define IBEX_VERSION "ibex1" + +struct ibex { + char *path; + GTree *files; + GHashTable *words; + GPtrArray *oldfiles; + gboolean dirty; +}; + +struct ibex_file { + char *name; + long index; +}; +typedef struct ibex_file ibex_file; + +gint ibex__strcmp(gconstpointer a, gconstpointer b); + +#define IBEX_BUFSIZ 1024 |