Changes in src/libcfa/iostream [9428d52:3ce0d440]
- File:
-
- 1 edited
-
src/libcfa/iostream (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/iostream
r9428d52 r3ce0d440 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : S un Jul 1 12:12:22201813 // Update Count : 15 512 // Last Modified On : Sat Jun 2 08:07:55 2018 13 // Update Count : 153 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 *, size_t );44 ostype & write( ostype &, const char *, unsigned long int ); 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 *, size_t );119 istype & read( istype &, char *, unsigned long int ); 120 120 istype & ungetc( istype &, char ); 121 121 int fmt( istype &, const char fmt[], ... );
Note:
See TracChangeset
for help on using the changeset viewer.