We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f07c07 commit 5815785Copy full SHA for 5815785
README.md
@@ -244,7 +244,17 @@ The following is an example of performing a get bucket:
244
245
```c
246
247
-ds3_get_bucket_response *response;
+#include <stdlib.h>
248
+#include <string.h>
249
+#include <stdint.h>
250
+#include <stdio.h>
251
+#include <sys/types.h>
252
+#include <sys/stat.h>
253
+// "ds3.h" is the only header that needs to be included to use the DS3 API.
254
+#include "ds3.h"
255
+
256
+int main (int args, char * argv[]) {
257
+ ds3_get_bucket_response *response;
258
uint64_t i;
259
260
// Setup client credentials and then the actual client itself.
0 commit comments