mirror of
https://github.com/curl/curl.git
synced 2026-08-25 07:33:36 +03:00
add Curl_ prefix to conform with cURL naming standards
This commit is contained in:
parent
d3714b016d
commit
6a0d3233ff
3 changed files with 15 additions and 13 deletions
|
|
@ -25,14 +25,15 @@
|
|||
#include <curl/curl.h>
|
||||
|
||||
/* WRITEFUNCTION callback for parsing LIST responses */
|
||||
size_t ftp_parselist(char *buffer, size_t size, size_t nmemb, void *connptr);
|
||||
size_t Curl_ftp_parselist(char *buffer, size_t size, size_t nmemb,
|
||||
void *connptr);
|
||||
|
||||
struct ftp_parselist_data; /* defined inside ftplibparser.c */
|
||||
|
||||
CURLcode ftp_parselist_geterror(struct ftp_parselist_data *pl_data);
|
||||
CURLcode Curl_ftp_parselist_geterror(struct ftp_parselist_data *pl_data);
|
||||
|
||||
struct ftp_parselist_data *ftp_parselist_data_alloc(void);
|
||||
struct ftp_parselist_data *Curl_ftp_parselist_data_alloc(void);
|
||||
|
||||
void ftp_parselist_data_free(struct ftp_parselist_data **pl_data);
|
||||
void Curl_ftp_parselist_data_free(struct ftp_parselist_data **pl_data);
|
||||
|
||||
#endif /* HEADER_CURL_FTPLISTPARSER_H */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue