Changes in / [6994d8c:8024bc8]


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/libcfa/iostream.c

    r6994d8c r8024bc8  
    1010// Created On       : Wed May 27 17:56:53 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Sun Sep 17 23:24:25 2017
    13 // Update Count     : 422
     12// Last Modified On : Mon Sep 11 09:21:24 2017
     13// Update Count     : 420
    1414//
    1515
     
    3434forall( dtype ostype | ostream( ostype ) )
    3535ostype * ?|?( ostype * os, signed char c ) {
    36         if ( sepPrt( os ) ) fmt( os, "%s", sepGetCur( os ) );
    3736        fmt( os, "%hhd", c );
     37        sepOff( os );
    3838        return os;
    3939} // ?|?
     
    4141forall( dtype ostype | ostream( ostype ) )
    4242ostype * ?|?( ostype * os, unsigned char c ) {
    43         if ( sepPrt( os ) ) fmt( os, "%s", sepGetCur( os ) );
    4443        fmt( os, "%hhu", c );
     44        sepOff( os );
    4545        return os;
    4646} // ?|?
Note: See TracChangeset for help on using the changeset viewer.