Changeset e3b2474 for src/libcfa/iostream
- Timestamp:
- Jul 3, 2018, 3:25:56 PM (7 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, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
- Children:
- 638ac26
- Parents:
- c653b37 (diff), bbe1a87 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
src/libcfa/iostream (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/iostream
rc653b37 re3b2474 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : S at Jun 2 08:07:55201813 // Update Count : 15 312 // Last Modified On : Sun Jul 1 12:12:22 2018 13 // Update Count : 155 14 14 // 15 15 … … 42 42 void open( ostype & os, const char * name, const char * mode ); 43 43 void close( ostype & os ); 44 ostype & write( ostype &, const char *, unsigned long int );44 ostype & write( ostype &, const char *, size_t ); 45 45 int fmt( ostype &, const char fmt[], ... ); 46 46 }; // ostream … … 117 117 void open( istype & is, const char * name ); 118 118 void close( istype & is ); 119 istype & read( istype &, char *, unsigned long int );119 istype & read( istype &, char *, size_t ); 120 120 istype & ungetc( istype &, char ); 121 121 int fmt( istype &, const char fmt[], ... );
Note:
See TracChangeset
for help on using the changeset viewer.