c_str.c
changeset 8 4ecd557ebebf
parent 7 fcde17ef6af6
--- a/c_str.c	Thu May 31 00:17:52 2007 +0200
+++ b/c_str.c	Thu May 31 12:01:18 2007 +0200
@@ -144,7 +144,9 @@
 {
     int i;
 
+    /*
     fprintf(out, "Length: %i\n", str->length);
+    */
     for (i = 0; i < str->length; ++i)
         fprintf(out, "%02hhx", str->ptr[i]);
 }