-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjokes.h
52 lines (46 loc) · 1.17 KB
/
jokes.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#include <curl/curl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
struct string {
char *ptr;
size_t len;
};
void init_string(struct string *s) {
s->len = 0;
s->ptr = malloc(s->len + 1);
if (s->ptr == NULL) {
fprintf(stderr, "malloc() failed\n");
exit(EXIT_FAILURE);
}
s->ptr[0] = '\0';
}
size_t writefunc(void *ptr, size_t size, size_t nmemb, struct string *s) {
size_t new_len = s->len + size * nmemb;
s->ptr = realloc(s->ptr, new_len + 1);
if (s->ptr == NULL) {
fprintf(stderr, "realloc() failed\n");
exit(EXIT_FAILURE);
}
memcpy(s->ptr + s->len, ptr, size * nmemb);
s->ptr[new_len] = '\0';
s->len = new_len;
return size * nmemb;
}
char *get_joke(void) {
CURL *curl = curl_easy_init();
if (curl) {
CURLcode res;
struct string joke;
init_string(&joke);
curl_easy_setopt(curl, CURLOPT_URL,
"https://icanhazdadjoke.com/");
curl_easy_setopt(curl, CURLOPT_USERAGENT, "curl/7.7.0");
curl_easy_setopt(curl, CURLOPT_ACCEPT_ENCODING, "*/*");
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, writefunc);
curl_easy_setopt(curl, CURLOPT_WRITEDATA, &joke);
res = curl_easy_perform(curl);
curl_easy_cleanup(curl);
return joke.ptr;
}
}