Files
c621/include/curl_utils.h
T
2026-05-01 13:16:04 +01:00

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