* shutdown libcitadel and xdgmime properly
[citadel.git] / libcitadel / lib / libcitadel.c
1 /*
2  * $Id$
3  *
4  */
5
6 #include <stdlib.h>
7 #include <unistd.h>
8 #include <stdio.h>
9 #include <signal.h>
10 #include <sys/types.h>
11 #include <ctype.h>
12 #include <string.h>
13 #include <sys/stat.h>
14 #include <errno.h>
15 #include "libcitadel.h"
16 #include "xdgmime/xdgmime.h"
17 #include "libcitadellocal.h"
18
19 char *libcitadel_version_string(void) {
20         return "$Id$";
21 }
22
23 int libcitadel_version_number(void) {
24         return LIBCITADEL_VERSION_NUMBER;
25 }
26
27 void ShutDownLibCitadel(void)
28 {
29         ShutDownLibCitadelMime();
30
31         xdg_mime_shutdown();
32 }