Changeset dd8d4c5
- Timestamp:
- 2006-01-10T14:36:49Z (19 years ago)
- Branches:
- master
- Children:
- 277674c, 8e419cb
- Parents:
- 4fe4be2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
util.c
r4fe4be2 rdd8d4c5 36 36 #include <stdlib.h> 37 37 #include <string.h> 38 #include <ctype.h> 38 39 #include <glib.h> 39 40 #include <time.h> … … 377 378 for( i = j = 0; t[i]; i ++, j ++ ) 378 379 { 379 if( t[i] <= ' ' || ((unsigned char *)t)[i] >= 128 || t[i] == '%' ) 380 /* if( t[i] <= ' ' || ((unsigned char *)t)[i] >= 128 || t[i] == '%' ) */ 381 if( !isalnum( t[i] ) ) 380 382 { 381 383 sprintf( s + j, "%%%02X", ((unsigned char*)t)[i] );
Note: See TracChangeset
for help on using the changeset viewer.