Index: src/libcfa/iostream
===================================================================
--- src/libcfa/iostream	(revision 2988eebb61a23bfe28efea59b2bdd2e4fb6028c1)
+++ src/libcfa/iostream	(revision fe1b6a48085fdf7fc2970d2d18e87bc2e6d6809d)
@@ -10,6 +10,6 @@
 // Created On       : Wed May 27 17:56:53 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Mon Mar  6 20:51:35 2017
-// Update Count     : 98
+// Last Modified On : Tue Mar 21 15:57:29 2017
+// Update Count     : 104
 //
 
@@ -25,6 +25,10 @@
 	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
+	const char * sepGet( ostype * );					// get separator string
 	void sepSet( ostype *, const char * );				// set separator to string (15 character maximum)
-	const char * sepGet( ostype * );					// get separator string
+	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
@@ -35,5 +39,5 @@
 	void close( ostype * os );
 	ostype * write( ostype *, const char *, unsigned long int );
-	int prtfmt( ostype *, const char fmt[], ... );
+	int fmt( ostype *, const char fmt[], ... );
 };
 
@@ -95,5 +99,5 @@
 	istype * read( istype *, char *, unsigned long int );
 	istype * ungetc( istype *, char );
-	int scanfmt( istype *, const char fmt[], ... );
+	int fmt( istype *, const char fmt[], ... );
 };
 
