summaryrefslogtreecommitdiff
path: root/lib/ftplistparser.h
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2010-06-09 15:45:46 +0200
committerYang Tse <yangsita@gmail.com>2010-06-09 15:45:46 +0200
commit6a0d3233ffacec92ad230f74458454bf65a24eac (patch)
tree58b1ba697fec11e50408b5df5c6ff816791b65d0 /lib/ftplistparser.h
parentd3714b016d9f88420d17861d4a48f39365bdd961 (diff)
downloadcurl-6a0d3233ffacec92ad230f74458454bf65a24eac.tar.gz
add Curl_ prefix to conform with cURL naming standards
Diffstat (limited to 'lib/ftplistparser.h')
-rw-r--r--lib/ftplistparser.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/ftplistparser.h b/lib/ftplistparser.h
index 5a16abf6a..67a06c296 100644
--- a/lib/ftplistparser.h
+++ b/lib/ftplistparser.h
@@ -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 */