Split BlueSky include files into public and private parts.
[bluesky.git] / bluesky / init.c
1 /* Blue Sky: File Systems in the Cloud
2  *
3  * Copyright (C) 2009  The Regents of the University of California
4  * Written by Michael Vrable <mvrable@cs.ucsd.edu>
5  *
6  * TODO: Licensing
7  */
8
9 #include <stdint.h>
10 #include <stdlib.h>
11 #include <glib.h>
12 #include <string.h>
13
14 #include "bluesky-private.h"
15
16 /* BlueSky library initialization. */
17
18 void bluesky_store_init_s3(void);
19
20 /* Initialize the BlueSky library and dependent libraries. */
21 void bluesky_init(void)
22 {
23     g_thread_init(NULL);
24     bluesky_crypt_init();
25
26     bluesky_store_init();
27     bluesky_store_init_s3();
28 }