X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fdiag-entry.c;h=98b07b8d2033abd191c59434436d9bcd4f2b9bf7;hp=d3c082c3eb02f9b4f3ddf1b8561a4fdc311cb6e8;hb=64f21c5f41690ce42f89bedae8c5ba72bdd12365;hpb=84d7b06c13daa609e93f353e655c4b02f936d65c diff --git a/src/diag-entry.c b/src/diag-entry.c index d3c082c..98b07b8 100644 --- a/src/diag-entry.c +++ b/src/diag-entry.c @@ -1,10 +1,19 @@ /* - * Copyright (C) 1995-2005, Index Data ApS + * Copyright (C) 1995-2006, Index Data ApS * See the file LICENSE for details. * - * $Id: diag-entry.c,v 1.1 2005-04-22 08:27:58 adam Exp $ + * $Id: diag-entry.c,v 1.3 2006-04-19 23:15:39 adam Exp $ */ +/** + * \file diag-entry.c + * \brief Diagnostic table lookup + */ + +#if HAVE_CONFIG_H +#include +#endif + #include "diag-entry.h" const char *yaz_diag_to_str(struct yaz_diag_entry *tab, int code) @@ -15,3 +24,11 @@ const char *yaz_diag_to_str(struct yaz_diag_entry *tab, int code) return tab[i].msg; return "Unknown error"; } +/* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + * vim: shiftwidth=4 tabstop=8 expandtab + */ +