FileStream.st
changeset 88 81dacba7a63a
parent 85 1343af456e28
child 92 0c73b48551ac
equal deleted inserted replaced
87:a0cc38a72871 88:81dacba7a63a
    18 !
    18 !
    19 
    19 
    20 FileStream comment:'
    20 FileStream comment:'
    21 COPYRIGHT (c) 1989 by Claus Gittinger
    21 COPYRIGHT (c) 1989 by Claus Gittinger
    22               All Rights Reserved
    22               All Rights Reserved
    23 
       
    24 This class provides access to the operating systems underlying file
       
    25 system (i.e. its an interface to the stdio library).
       
    26 
       
    27 $Header: /cvs/stx/stx/libbasic/FileStream.st,v 1.12 1994-06-02 11:20:21 claus Exp $
       
    28 '!
    23 '!
       
    24 
       
    25 !FileStream class methodsFor:'documentation'!
       
    26 
       
    27 copyright
       
    28 "
       
    29  COPYRIGHT (c) 1989 by Claus Gittinger
       
    30               All Rights Reserved
       
    31 
       
    32  This software is furnished under a license and may be used
       
    33  only in accordance with the terms of that license and with the
       
    34  inclusion of the above copyright notice.   This software may not
       
    35  be provided or otherwise made available to, or used by, any
       
    36  other person.  No title to or ownership of the software is
       
    37  hereby transferred.
       
    38 "
       
    39 !
       
    40 
       
    41 version
       
    42 "
       
    43 $Header: /cvs/stx/stx/libbasic/FileStream.st,v 1.13 1994-06-02 16:20:18 claus Exp $
       
    44 "
       
    45 !
       
    46 
       
    47 documentation
       
    48 "
       
    49     This class provides access to the operating systems underlying file
       
    50     system (i.e. its an interface to the stdio library).
       
    51 "
       
    52 ! !
    29 
    53 
    30 %{
    54 %{
    31 #include <stdio.h>
    55 #include <stdio.h>
    32 #include <errno.h>
    56 #include <errno.h>
    33 
    57