14 lines
241 B
C
14 lines
241 B
C
#ifndef CURL_UTILS_H
|
|
#define CURL_UtILS_H
|
|
|
|
#include "e621.h"
|
|
|
|
typedef struct {
|
|
char *key;
|
|
char **value;
|
|
int count;
|
|
} curl_url_peram_t;
|
|
|
|
char *CurlGet(char *path, curl_url_peram_t *perams, int peram_count, e6_auth_t auth);
|
|
|
|
#endif |