Index: libcfa/src/strstream.cfa
===================================================================
--- libcfa/src/strstream.cfa	(revision 95330c335047f8584d6529b923b2a80afc78698f)
+++ libcfa/src/strstream.cfa	(revision 10340596e53755190e6a931c0561a473e62697ec)
@@ -10,6 +10,6 @@
 // Created On       : Thu Apr 22 22:24:35 2021
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Mon Apr 14 20:45:00 2025
-// Update Count     : 116
+// Last Modified On : Sat Oct 11 15:10:56 2025
+// Update Count     : 119
 //
 
@@ -148,4 +148,5 @@
 		abort();
 	} // if
+	os.cursor$ = 0;
 	return os;
 } // write
@@ -155,4 +156,7 @@
 } // write
 
+void clear( ostrstream & os ) {
+	os.cursor$ = 0;
+} // clear
 
 // *********************************** istrstream ***********************************
Index: libcfa/src/strstream.hfa
===================================================================
--- libcfa/src/strstream.hfa	(revision 95330c335047f8584d6529b923b2a80afc78698f)
+++ libcfa/src/strstream.hfa	(revision 10340596e53755190e6a931c0561a473e62697ec)
@@ -10,6 +10,6 @@
 // Created On       : Thu Apr 22 22:20:59 2021
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Mon Apr 14 20:57:15 2025
-// Update Count     : 61
+// Last Modified On : Sat Oct 11 15:11:06 2025
+// Update Count     : 62
 // 
 
@@ -75,4 +75,6 @@
 void ?{}( ostrstream &, char buf[], size_t size );
 
+void clear( ostrstream & os );
+
 
 // *********************************** istrstream ***********************************
