Added skeleton for query charset conversion. Bug #977.
[yaz-moved-to-github.git] / src / diag-entry.h
1 /*
2  * Copyright (C) 1995-2007, Index Data ApS
3  * See the file LICENSE for details.
4  *
5  * $Id: diag-entry.h,v 1.4 2007-01-03 08:42:15 adam Exp $
6  */
7
8 /**
9  * \file diag-entry.h
10  * \brief Diagnostic table lookup header
11  */
12
13 struct yaz_diag_entry {
14     int code;
15     char *msg;
16 };
17
18 const char *yaz_diag_to_str(struct yaz_diag_entry *tab, int code);
19 /*
20  * Local variables:
21  * c-basic-offset: 4
22  * indent-tabs-mode: nil
23  * End:
24  * vim: shiftwidth=4 tabstop=8 expandtab
25  */
26