Changeset 171 for trunk/thune/encoding.c
- Timestamp:
- 06/06/06 20:16:11 (3 years ago)
- Files:
-
- 1 modified
-
trunk/thune/encoding.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/thune/encoding.c
r162 r171 69 69 if( c > 127 ) 70 70 c = 0; 71 *dest++ = c;71 *dest++ = (char) c; 72 72 } 73 73 return len;
