mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-11-29 04:03:09 +03:00
bb2bbc6b91
git-svn-id: svn://kolibrios.org@4364 a494cfbc-eb01-0410-851d-a64ba20cac60
10 lines
334 B
C
10 lines
334 B
C
typedef int CURL;
|
|
typedef unsigned long time_t;
|
|
|
|
char *curl_unescape( char * url , int length );
|
|
void curl_free( char * ptr );
|
|
char *curl_easy_unescape( CURL * curl , char * url , int inlength , int * outlength );
|
|
void curl_easy_cleanup(CURL * handle );
|
|
CURL *curl_easy_init( );
|
|
time_t curl_getdate(char * datestring , time_t *now );
|