diff options
| author | Mistivia <i@mistivia.com> | 2025-09-14 00:30:41 +0800 |
|---|---|---|
| committer | Mistivia <i@mistivia.com> | 2025-09-14 00:30:41 +0800 |
| commit | 35c8f8e94f0346856130b2a96a7c99790796e53f (patch) | |
| tree | 8fbf1e5e8b99d8cdfa41765f4a9776d4d891acb6 /s3_client.h | |
| parent | a4daf467f871b0e77f07f1071b47b960da7bfba9 (diff) | |
add aws s3 client
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 |
