Changes in src/libcfa/iostream [829c907:c443d1d]
- File:
-
- 1 edited
-
src/libcfa/iostream (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/iostream
r829c907 rc443d1d 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Tue Mar 21 15:57:29201713 // Update Count : 10412 // Last Modified On : Mon Mar 6 17:48:01 2017 13 // Update Count : 97 14 14 // 15 15 … … 25 25 void sepReset( ostype * ); // set separator state to default state 26 26 void sepReset( ostype *, _Bool ); // set separator and default state 27 const char * sepGetCur( ostype * ); // get current separator string 28 void sepSetCur( ostype *, const char * ); // set current separator string 27 void sepSet( ostype *, const char * ); // set separator to string (15 character maximum) 29 28 const char * sepGet( ostype * ); // get separator string 30 void sepSet( ostype *, const char * ); // set separator to string (15 character maximum)31 const char * sepGetTuple( ostype * ); // get tuple separator string32 void sepSetTuple( ostype *, const char * ); // set tuple separator to string (15 character maximum)33 29 _Bool sepDisable( ostype * ); // set default state to off, and return previous state 34 30 _Bool sepEnable( ostype * ); // set default state to on, and return previous state … … 39 35 void close( ostype * os ); 40 36 ostype * write( ostype *, const char *, unsigned long int ); 41 int fmt( ostype *, const char fmt[], ... );37 int prtfmt( ostype *, const char fmt[], ... ); 42 38 }; 43 39 … … 99 95 istype * read( istype *, char *, unsigned long int ); 100 96 istype * ungetc( istype *, char ); 101 int fmt( istype *, const char fmt[], ... );97 int scanfmt( istype *, const char fmt[], ... ); 102 98 }; 103 99
Note:
See TracChangeset
for help on using the changeset viewer.