Lines Matching defs:string
11 #include <string.h>
210 void crBytesToString( char *string, int nstring, void *data, int ndata )
219 offset += sprintf( string + offset, "%02x ", udata[i] );
223 string[offset-1] = '\0';
225 crStrcpy( string + offset - 3, "..." );
228 void crWordsToString( char *string, int nstring, void *data, int ndata )
236 /* we need an ellipsis if all the words won't fit in the string */
251 offset += sprintf( string + offset, "%08x ", udata[i] );
255 crStrcpy( string + offset, "..." );
257 string[offset-1] = 0;
289 * It's the same as the Python call string.split(str, splitstr).
454 /* treat this as the end of version string */
530 crDebug("returning version %#x for string '%s'", iVer, initVer);