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
10void aws_init ();
11void aws_set_key ( char * const str );
12void aws_set_keyid ( char * const str );
13void aws_set_debug (int d);
14
15
16void s3_set_bucket ( char * const str );
17int s3_get ( FILE * b, char * const file );
18int s3_put ( FILE * b, char * const file );
19int s3_check ( char * const file );
20void s3_set_host ( char * const str );
21void s3_set_mime ( char * const str );
22void s3_set_acl ( char * const str );