Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/libcfa/fstream.c

    r53ba273 r356189a  
    55// file "LICENCE" distributed with Cforall.
    66//
    7 // fstream.c -- 
     7// fstream.c --
    88//
    99// Author           : Peter A. Buhr
    1010// Created On       : Wed May 27 17:56:53 2015
    11 // Last Modified By : Peter A. Buhr
    12 // Last Modified On : Wed Apr  6 17:55:27 2016
     11// Last Modified By : Rob Schluntz
     12// Last Modified On : Thu Apr 14 17:04:24 2016
    1313// Update Count     : 176
    1414//
     
    7575        if ( fclose( (FILE *)(os->file) ) == EOF ) {
    7676                perror( IO_MSG "close output" );
    77         } // if 
     77        } // if
    7878} // close
    7979
     
    139139        if ( fclose( (FILE *)(is->file) ) == EOF ) {
    140140                perror( IO_MSG "close input" );
    141         } // if 
     141        } // if
    142142} // close
    143143
     
    154154        return is;
    155155} // read
    156  
     156
    157157ifstream *ungetc( ifstream * is, char c ) {
    158158        if ( fail( is ) ) {
Note: See TracChangeset for help on using the changeset viewer.