aboutsummaryrefslogtreecommitdiff
path: root/s3_client.h
blob: 43d420830093f88e10359ad5be5641b2daed18f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef S3_CLIENT_H_
#define S3_CLIENT_H_

#ifdef __cplusplus
extern "C" {
#endif

void S3Client_init();

void S3Client_put(const char *filename, const char *object_name);

void S3Client_delete(const char *object_name);

#ifdef __cplusplus
}
#endif

#endif