/*
 * xti.c:
 * This file is automatically generated; please do not edit it.
 */
#ifdef __STDC__
#define NOARGS void
#else
#define NOARGS
#define const
#endif

static const char * const text[] = {
	"No matches were found",
	"Could not find string",
	"Selected item is not a folder",
	"Selected item is of unkown type",
	"No filename specified",
	"Not a numeric node ID",
	"Invalid email address",
	"sendmail returned nonzero status",
	"No password specified",
    0
};

struct error_table {
    char const * const * msgs;
    long base;
    int n_msgs;
};
struct et_list {
    struct et_list *next;
    const struct error_table * table;
};
extern struct et_list *_et_list;

static const struct error_table et = { text, 53191424L, 9 };

static struct et_list link = { 0, 0 };

void initialize_xti_error_table (NOARGS) {
    if (!link.table) {
        link.next = _et_list;
        link.table = &et;
        _et_list = &link;
    }
}
