Index: src/libcfa/iostream
===================================================================
--- src/libcfa/iostream	(revision 53ba273db2dfa4a4d251429b05f17a6400ed7f1e)
+++ src/libcfa/iostream	(revision 7cc6bd68b7a1f68775069a2ef3cfe55f7a5220f9)
@@ -10,6 +10,6 @@
 // Created On       : Wed May 27 17:56:53 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Tue Apr  5 22:32:37 2016
-// Update Count     : 90
+// Last Modified On : Sun Apr 10 23:00:12 2016
+// Update Count     : 92
 //
 
@@ -20,13 +20,14 @@
 
 trait ostream( dtype ostype ) {
-	_Bool sepPrt( ostype * );
-	void sepOn( ostype * );
-	void sepOff( ostype * );
-	void sepReset( ostype * );
-	void sepReset( ostype *, _Bool );
-	void sepSet( ostype *, const char * );
-	const char * sepGet( ostype * );
-	_Bool sepDisable( ostype * );
-	_Bool sepEnable( ostype * );
+	_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
+	void sepSet( ostype *, const char * );				// set separator to string (15 character maximum)
+	const char * sepGet( ostype * );					// get separator string 
+	_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 * );
 	int flush( ostype * );
