Displaying 1 result from an estimated 1 matches for "getschema".
2001 Dec 07
2
[Possible BUG]: Wine-20011108
...|| second == NULL)
return;
char *c = start;
for (; c < end && *c != ':'; c++);
if ((c - start) != 0)
*first = start;
if (*c == ':')
{
*c = '\0';
if ((end - c) > 1)
*second = c + 1;
}
}
URLParser::Schema
URLParser::GetSchema (void) const
{
if (!strcasecmp ("file", internalURL))
return URLParser::file;
if (!strcasecmp ("cygfile", internalURL))
return URLParser::cygfile;
if (!strcasecmp ("ftp", internalURL))
return URLParser::ftp;
if (!strcasecmp ("http", intern...