Index: src/libcfa/iostream
===================================================================
--- src/libcfa/iostream	(revision 829c907247aaf3211ea7e8c3d290193a6f2d15d5)
+++ src/libcfa/iostream	(revision 6c6455fa3aff35b9e4792ff0598a10b9ba27d3ea)
@@ -10,6 +10,6 @@
 // Created On       : Wed May 27 17:56:53 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Tue Mar 21 15:57:29 2017
-// Update Count     : 104
+// Last Modified On : Mon May 15 18:08:44 2017
+// Update Count     : 105
 //
 
@@ -20,17 +20,20 @@
 
 trait ostream( dtype ostype ) {
+	// private
 	_Bool sepPrt( ostype * );							// return separator state (on/off)
-	void sepOn( ostype * );								// turn separator state on
-	void sepOff( ostype * );							// turn separator state off
 	void sepReset( ostype * );							// set separator state to default state
 	void sepReset( ostype *, _Bool );					// set separator and default state
 	const char * sepGetCur( ostype * );					// get current separator string
 	void sepSetCur( ostype *, const char * );			// set current separator string
+	// public
+	void sepOn( ostype * );								// turn separator state on
+	void sepOff( ostype * );							// turn separator state off
+	_Bool sepDisable( ostype * );						// set default state to off, and return previous state
+	_Bool sepEnable( ostype * );						// set default state to on, and return previous state
+
 	const char * sepGet( ostype * );					// get separator string
 	void sepSet( ostype *, const char * );				// set separator to string (15 character maximum)
 	const char * sepGetTuple( ostype * );				// get tuple separator string
 	void sepSetTuple( ostype *, const char * );			// set tuple separator to string (15 character maximum)
-	_Bool sepDisable( ostype * );						// set default state to off, and return previous state
-	_Bool sepEnable( ostype * );						// set default state to on, and return previous state
 
 	int fail( ostype * );
