Index: src/libcfa/iostream
===================================================================
--- src/libcfa/iostream	(revision 40404257da8f22441f6123bdbff37bdb54e0e5f3)
+++ src/libcfa/iostream	(revision 78885b5b4e46d2fb5e2e2f6608cd9a636da8c48d)
@@ -10,6 +10,6 @@
 // Created On       : Wed May 27 17:56:53 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Wed Mar  2 18:05:27 2016
-// Update Count     : 85
+// Last Modified On : Tue Apr  5 22:32:37 2016
+// Update Count     : 90
 //
 
@@ -23,8 +23,10 @@
 	void sepOn( ostype * );
 	void sepOff( ostype * );
+	void sepReset( ostype * );
+	void sepReset( ostype *, _Bool );
 	void sepSet( ostype *, const char * );
 	const char * sepGet( ostype * );
-	void sepDisable( ostype * );
-	void sepEnable( ostype * );
+	_Bool sepDisable( ostype * );
+	_Bool sepEnable( ostype * );
 	int fail( ostype * );
 	int flush( ostype * );
@@ -67,4 +69,6 @@
 forall( dtype ostype | ostream( ostype ) ) ostype * sepOn( ostype * );
 forall( dtype ostype | ostream( ostype ) ) ostype * sepOff( ostype * );
+forall( dtype ostype | ostream( ostype ) ) ostype * sepDisable( ostype * );
+forall( dtype ostype | ostream( ostype ) ) ostype * sepEnable( ostype * );
 
 // writes the range [begin, end) to the given stream
@@ -110,11 +114,11 @@
 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, long double _Complex * );
 
-struct _Istream_str1 { char * s; };
-_Istream_str1 str( char * );
-forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, _Istream_str1 );
+struct _Istream_cstrUC { char * s; };
+_Istream_cstrUC cstr( char * );
+forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, _Istream_cstrUC );
 
-struct _Istream_str2 { char * s; int size; };
-_Istream_str2 str( char *, int size );
-forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, _Istream_str2 );
+struct _Istream_cstrC { char * s; int size; };
+_Istream_cstrC cstr( char *, int size );
+forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, _Istream_cstrC );
 
 #endif // __IOSTREAM_H__
