aboutsummaryrefslogtreecommitdiffstats
path: root/libibex/ibex_internal.h
blob: 1aabfb98c0affdf21601e980ac5e62fca3f17c94 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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