Lines Matching refs:temp
219 char *temp;
229 temp = crStrchr( my_hostname, '.' );
230 if (temp)
232 *temp = '\0';
324 static char buf[8092], *temp;
333 (LPTSTR) &temp, 0, NULL );
334 if ( temp )
336 crStrncpy( buf, temp, sizeof(buf)-1 );
340 temp = buf + crStrlen(buf) - 1;
341 while ( temp > buf && isspace( *temp ) )
343 *temp = '\0';
344 temp--;
668 static char buf[8092], *temp;
677 (LPTSTR) &temp, 0, NULL );
678 if ( temp )
680 crStrncpy( buf, temp, sizeof(buf)-1 );
684 temp = buf + crStrlen(buf) - 1;
685 while ( temp > buf && isspace( *temp ) )
687 *temp = '\0';
688 temp--;