Avoid ctype.h .
[yaz-moved-to-github.git] / src / iconv_decode_danmarc.c
index 3dc0f6e..aba40be 100644 (file)
@@ -1,5 +1,5 @@
 /* This file is part of the YAZ toolkit.
- * Copyright (C) 1995-2008 Index Data
+ * Copyright (C) 1995-2011 Index Data
  * See the file LICENSE for details.
  */
 /**
@@ -15,7 +15,6 @@
 #include <assert.h>
 #include <errno.h>
 #include <string.h>
-#include <ctype.h>
 #include <stdio.h>
 #include <yaz/log.h>
 #include <yaz/xmalloc.h>
@@ -77,7 +76,7 @@ static unsigned long read_danmarc(yaz_iconv_t cd,
             else
             {
                 unsigned long v;
-                sscanf(inp+1, "%4lx", &v);
+                sscanf((const char *) inp+1, "%4lx", &v);
                 *no_read = 5;
                 x = v;
             }
@@ -126,7 +125,9 @@ yaz_iconv_decoder_t yaz_danmarc_decoder(const char *fromcode,
 /*
  * Local variables:
  * c-basic-offset: 4
+ * c-file-style: "Stroustrup"
  * indent-tabs-mode: nil
  * End:
  * vim: shiftwidth=4 tabstop=8 expandtab
  */
+