cctools
s3_file_io.h
1 
2 /*
3  *
4  * Author: Vlad Korolev, <vlad[@]v-lad.org >
5  * Modified s3_get and s3_put. Also added s3_check: Nicholas Potteiger
6  *
7  */
8 
9 
10 void aws_init ();
11 void aws_set_key ( char * const str );
12 void aws_set_keyid ( char * const str );
13 void aws_set_debug (int d);
14 
15 
16 void s3_set_bucket ( char * const str );
17 int s3_get ( FILE * b, char * const file );
18 int s3_put ( FILE * b, char * const file );
19 int s3_check ( char * const file );
20 void s3_set_host ( char * const str );
21 void s3_set_mime ( char * const str );
22 void s3_set_acl ( char * const str );