diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2004-04-30 10:34:54 +0000 | 
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2004-04-30 10:34:54 +0000 | 
| commit | 34be9df773066bc0fe2bfa973bc6bc1984956a97 (patch) | |
| tree | 52ee23385295fba89e5cc7e3336f7d6c761adb9e | |
| parent | 7356a67780a307bccda16fd9f1df6e2a753f3317 (diff) | |
deprecated functions
| -rw-r--r-- | include/curl/curl.h | 11 | 
1 files changed, 3 insertions, 8 deletions
| diff --git a/include/curl/curl.h b/include/curl/curl.h index 67d28c470..cd9f6454a 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -848,13 +848,8 @@ typedef enum {  #endif -/* These functions are in libcurl, they're here for portable reasons and they -   are used by the 'curl' client. They really should be moved to some kind of -   "portability library" since it has nothing to do with file transfers and -   might be usable to other programs... - -   NOTE: they return TRUE if the strings match *case insensitively*. - */ +/* curl_strequal() and curl_strnequal() are subject for removal in a future +   libcurl, see lib/README.curlx for details */  extern int (curl_strequal)(const char *s1, const char *s2);  extern int (curl_strnequal)(const char *s1, const char *s2, size_t n); @@ -970,7 +965,7 @@ void curl_formfree(struct curl_httppost *form);   * DESCRIPTION   *   * Returns a malloc()'ed string that MUST be curl_free()ed after usage is - * complete. + * complete. DEPRECATED - see lib/README.curlx   */  char *curl_getenv(const char *variable); | 
