curl_strequal.3
上传用户:coffee44
上传日期:2018-10-23
资源大小:12304k
文件大小:1k
源码类别:

TAPI编程

开发平台:

Visual C++

  1. ." $Id: curl_strequal.3,v 1.3 2008-12-28 21:56:56 bagder Exp $
  2. ."
  3. .TH curl_strequal 3 "30 April 2004" "libcurl 7.12" "libcurl Manual"
  4. .SH NAME
  5. curl_strequal, curl_strnequal - case insensitive string comparisons
  6. .SH SYNOPSIS
  7. .B #include <curl/curl.h>
  8. .sp
  9. .BI "int curl_strequal(char *" str1 ", char *" str2 ");"
  10. .sp
  11. .BI "int curl_strenqual(char *" str1 ", char *" str2 ", size_t " len ");"
  12. .SH DESCRIPTION
  13. The
  14. .B curl_strequal()
  15. function compares the two strings fIstr1fP and fIstr2fP, ignoring the case
  16. of the characters. It returns a non-zero (TRUE) integer if the strings are
  17. identical.
  18. .sp
  19. The fBcurl_strnequal()fP function is similar, except it only compares the
  20. first fIlenfP characters of fIstr1fP.
  21. .sp
  22. These functions are provided by libcurl to enable applications to compare
  23. strings in a truly portable manner. There are no standard portable case
  24. insensitive string comparison functions. These two work on all platforms.
  25. .SH AVAILABILITY
  26. These functions will be removed from the public libcurl API in a near
  27. future. They will instead be made "available" by source code access only, and
  28. then as curlx_strequal() and curlx_strenqual().
  29. .SH RETURN VALUE
  30. Non-zero if the strings are identical. Zero if they're not.
  31. .SH "SEE ALSO"
  32. .BR strcmp "(3), " strcasecmp "(3)"