Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
TLMSP curl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CYBER - Cyber Security
TS 103 523 MSP
TLMSP
TLMSP curl
Commits
1f32da93
Commit
1f32da93
authored
24 years ago
by
Daniel Stenberg
Browse files
Options
Downloads
Patches
Plain Diff
Added the strequal() prototypes here
parent
e5c792d4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/curl/curl.h
+12
-7
12 additions, 7 deletions
include/curl/curl.h
with
12 additions
and
7 deletions
include/curl/curl.h
+
12
−
7
View file @
1f32da93
...
...
@@ -395,11 +395,16 @@ typedef char bool;
#endif
/* (rabe) */
#endif
#if 0
/* At last, I stand here in front of you today and can officially proclaim
this function prototype as history... 17th of May, 2000 */
UrgError curl_urlget(UrgTag, ...);
#endif
/* These functions are in the 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*.
*/
extern
int
(
strequal
)(
const
char
*
s1
,
const
char
*
s2
);
extern
int
(
strnequal
)(
const
char
*
s1
,
const
char
*
s2
,
size_t
n
);
/* external form function */
int
curl_formparse
(
char
*
string
,
...
...
@@ -414,8 +419,8 @@ char *curl_getenv(char *variable);
char
*
curl_version
(
void
);
/* This is the version number */
#define LIBCURL_VERSION "7.0.1
1
test"
#define LIBCURL_VERSION_NUM 0x07000
b
#define LIBCURL_VERSION "7.0.1
2
test"
#define LIBCURL_VERSION_NUM 0x07000
c
/* linked-list structure for the CURLOPT_QUOTE option */
struct
curl_slist
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment