Initial KIWAY (modular-kicad) work. Various tweeks.

This commit is contained in:
Dick Hollenbeck
2014-02-03 09:10:37 -06:00
parent d3ee4b1eda
commit 5d4eab87f8
21 changed files with 1030 additions and 123 deletions
+1 -6
View File
@@ -157,9 +157,7 @@ int UTF8::uni_forward( const unsigned char* aSequence, unsigned* aResult )
}
if( aResult )
{
*aResult = ch;
}
return len;
}
@@ -234,10 +232,7 @@ int main()
for( UTF8::uni_iter it = u2.ubegin(); it < u2.uend(); )
{
// test post-increment:
printf( " _%c_", *it++ );
// after UTF8::uni_forward() is implemented, %c is no longer useable.
// printf( " _%02x_", *it++ );
printf( " _%02x_", *it++ );
}
printf( "\n" );