Moved Curl_strntoupper() to the rawstr.c file where the other raw string

functions are.
This commit is contained in:
Daniel Stenberg
2009-02-07 22:53:37 +00:00
parent 73cf99c052
commit bf44d0f640
4 changed files with 20 additions and 20 deletions

View File

@@ -230,21 +230,6 @@ void Curl_safefree(void *ptr)
free(ptr);
}
/* Copy an upper case version of the string from src to dest. The
* strings may overlap. No more than n characters of the string are copied
* (including any NUL) and the destination string will NOT be
* NUL-terminated if that limit is reached.
*/
void Curl_strntoupper(char *dest, const char *src, size_t n)
{
if (n < 1)
return;
do {
*dest++ = Curl_raw_toupper(*src);
} while (*src++ && --n);
}
static void close_connections(struct SessionHandle *data)
{
/* Loop through all open connections and kill them one by one */