~ubuntu-branches/ubuntu/utopic/curl/utopic-updates

« back to all changes in this revision

Viewing changes to lib/rawstr.h

  • Committer: Bazaar Package Importer
  • Author(s): James Page
  • Date: 2011-10-20 09:28:24 UTC
  • mfrom: (3.4.22 sid)
  • Revision ID: james.westby@ubuntu.com-20111020092824-i7kfjd5we7dh57nv
Tags: 7.21.7-3ubuntu1
* Merge from Debian testing, remaining changes:
  - Drop dependencies not in main:
    + Build-Depends: Drop stunnel and libssh2-1-dev.
    + Drop libssh2-1-dev from libcurl4-openssl-dev's Depends.
  - Add new libcurl3-udeb package, stripped down for use during 
    installation (LP: #831496).
* Dropped changes:
  - debian/patches/timeout_bug_736216: applied upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
 * to be locale independent and only compare strings we know are safe for
30
30
 * this.
31
31
 *
32
 
 * The function is capable of comparing a-z case insensitively even for non-ascii.
 
32
 * The function is capable of comparing a-z case insensitively even for
 
33
 * non-ascii.
33
34
 */
34
35
int Curl_raw_equal(const char *first, const char *second);
35
36
int Curl_raw_nequal(const char *first, const char *second, size_t max);