Changes in / [6994d8c:8024bc8]
- File:
-
- 1 edited
-
src/libcfa/iostream.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/iostream.c
r6994d8c r8024bc8 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Sun Sep 17 23:24:25201713 // Update Count : 42 212 // Last Modified On : Mon Sep 11 09:21:24 2017 13 // Update Count : 420 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 ) );37 36 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 ) );44 43 fmt( os, "%hhu", c ); 44 sepOff( os ); 45 45 return os; 46 46 } // ?|?
Note:
See TracChangeset
for help on using the changeset viewer.