Version 5.10.0
[yaz-moved-to-github.git] / src / mime.c
index 2a82c7d..ae346d8 100644 (file)
@@ -1,8 +1,6 @@
-/*
- * Copyright (C) 1995-2006, Index Data ApS
+/* This file is part of the YAZ toolkit.
+ * Copyright (C) Index Data
  * See the file LICENSE for details.
- *
- * $Id: mime.c,v 1.2 2006-04-20 20:50:51 adam Exp $
  */
 
 /** \file mime.c
@@ -15,7 +13,6 @@
 
 #include <stdio.h>
 #include <string.h>
-#include <ctype.h>
 #include <yaz/xmalloc.h>
 
 #include "mime.h"
@@ -32,7 +29,7 @@ struct yaz_mime_info {
 
 yaz_mime_types yaz_mime_types_create()
 {
-    yaz_mime_types p = xmalloc(sizeof(*p));
+    yaz_mime_types p = (yaz_mime_types) xmalloc(sizeof(*p));
     p->table = 0;
     return p;
 }
@@ -40,7 +37,7 @@ yaz_mime_types yaz_mime_types_create()
 void yaz_mime_types_add(yaz_mime_types t, const char *suffix,
                         const char *mime_type)
 {
-    struct yaz_mime_entry *e = xmalloc(sizeof(*e));
+    struct yaz_mime_entry *e = (struct yaz_mime_entry *) xmalloc(sizeof(*e));
     e->mime_type  = xstrdup(mime_type);
     e->suffix = xstrdup(suffix);
     e->next = t->table;
@@ -83,6 +80,7 @@ void yaz_mime_types_destroy(yaz_mime_types t)
 /*
  * Local variables:
  * c-basic-offset: 4
+ * c-file-style: "Stroustrup"
  * indent-tabs-mode: nil
  * End:
  * vim: shiftwidth=4 tabstop=8 expandtab