Changeset 829c907 for src/libcfa/iostream
- Timestamp:
- Mar 21, 2017, 10:04:47 PM (8 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 87d13cd
- Parents:
- 89d129c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/iostream
r89d129c r829c907 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Mon Mar 6 20:51:35201713 // Update Count : 9812 // Last Modified On : Tue Mar 21 15:57:29 2017 13 // Update Count : 104 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 29 const char * sepGet( ostype * ); // get separator string 27 30 void sepSet( ostype *, const char * ); // set separator to string (15 character maximum) 28 const char * sepGet( ostype * ); // get separator string 31 const char * sepGetTuple( ostype * ); // get tuple separator string 32 void sepSetTuple( ostype *, const char * ); // set tuple separator to string (15 character maximum) 29 33 _Bool sepDisable( ostype * ); // set default state to off, and return previous state 30 34 _Bool sepEnable( ostype * ); // set default state to on, and return previous state … … 35 39 void close( ostype * os ); 36 40 ostype * write( ostype *, const char *, unsigned long int ); 37 int prtfmt( ostype *, const char fmt[], ... );41 int fmt( ostype *, const char fmt[], ... ); 38 42 }; 39 43 … … 95 99 istype * read( istype *, char *, unsigned long int ); 96 100 istype * ungetc( istype *, char ); 97 int scanfmt( istype *, const char fmt[], ... );101 int fmt( istype *, const char fmt[], ... ); 98 102 }; 99 103
Note: See TracChangeset
for help on using the changeset viewer.