Expanded tabs in all source files. Added vim/emacs local variables
[yaz-moved-to-github.git] / src / diag-entry.h
1 /*
2  * Copyright (C) 1995-2005, Index Data ApS
3  * See the file LICENSE for details.
4  *
5  * $Id: diag-entry.h,v 1.2 2005-06-25 15:46:04 adam Exp $
6  */
7
8 struct yaz_diag_entry {
9     int code;
10     char *msg;
11 };
12
13 const char *yaz_diag_to_str(struct yaz_diag_entry *tab, int code);
14 /*
15  * Local variables:
16  * c-basic-offset: 4
17  * indent-tabs-mode: nil
18  * End:
19  * vim: shiftwidth=4 tabstop=8 expandtab
20  */
21