From fee81607c448feaa85024f056c54c6a020d10884 Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Sat, 22 Dec 2012 17:37:29 +0000 Subject: not needed anymore git-svn-id: http://svn.miranda-ng.org/main/trunk@2805 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/!NotAdopted/Skype/util.c | 57 ---------------------------------------- 1 file changed, 57 deletions(-) delete mode 100644 plugins/!NotAdopted/Skype/util.c (limited to 'plugins/!NotAdopted/Skype/util.c') diff --git a/plugins/!NotAdopted/Skype/util.c b/plugins/!NotAdopted/Skype/util.c deleted file mode 100644 index ce5ad9c756..0000000000 --- a/plugins/!NotAdopted/Skype/util.c +++ /dev/null @@ -1,57 +0,0 @@ -#include - -char * __cdecl strtok_r ( - char * string, - const char * control, - char **nextoken - ) -{ - unsigned char *str; - const unsigned char *ctrl = (const unsigned char*)control; - - unsigned char map[32]; - int count; - - /* Clear control map */ - for (count = 0; count < 32; count++) - map[count] = 0; - - /* Set bits in delimiter table */ - do { - map[*ctrl >> 3] |= (1 << (*ctrl & 7)); - } while (*ctrl++); - - /* Initialize str. If string is NULL, set str to the saved - * pointer (i.e., continue breaking tokens out of the string - * from the last strtok call) */ - if (string) - str = (unsigned char*)string; - else - str = (unsigned char*)(*nextoken); - - /* Find beginning of token (skip over leading delimiters). Note that - * there is no token iff this loop sets str to point to the terminal - * null (*str == '\0') */ - while ( (map[*str >> 3] & (1 << (*str & 7))) && *str ) - str++; - - string = (char*)str; - - /* Find the end of the token. If it is not the end of the string, - * put a null there. */ - for ( ; *str ; str++ ) - if ( map[*str >> 3] & (1 << (*str & 7)) ) { - *str++ = '\0'; - break; - } - - /* Update nextoken (or the corresponding field in the per-thread data - * structure */ - *nextoken = (char*)str; - - /* Determine if a token has been found. */ - if ( string == (char*)str ) - return NULL; - else - return string; -} -- cgit v1.2.3