Changeset 3e239ea
- Timestamp:
- Sep 18, 2017, 11:21:40 AM (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, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 6994d8c
- Parents:
- 5f782f7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/iostream.c
r5f782f7 r3e239ea 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Mon Sep 11 09:21:24201713 // Update Count : 42 012 // Last Modified On : Sun Sep 17 23:24:25 2017 13 // Update Count : 422 14 14 // 15 15 … … 34 34 forall( dtype ostype | ostream( ostype ) ) 35 35 ostype * ?|?( ostype * os, signed char c ) { 36 if ( sepPrt( os ) ) fmt( os, "%s", sepGetCur( os ) ); 36 37 fmt( os, "%hhd", c ); 37 sepOff( os );38 38 return os; 39 39 } // ?|? … … 41 41 forall( dtype ostype | ostream( ostype ) ) 42 42 ostype * ?|?( ostype * os, unsigned char c ) { 43 if ( sepPrt( os ) ) fmt( os, "%s", sepGetCur( os ) ); 43 44 fmt( os, "%hhu", c ); 44 sepOff( os );45 45 return os; 46 46 } // ?|?
Note: See TracChangeset
for help on using the changeset viewer.