diff options
Diffstat (limited to 's3_client.h')
| -rw-r--r-- | s3_client.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/s3_client.h b/s3_client.h new file mode 100644 index 0000000..43d4208 --- /dev/null +++ b/s3_client.h @@ -0,0 +1,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 |
