FileStream.st
changeset 216 a8abff749575
parent 173 58e9778954bc
child 223 3075043790b8
equal deleted inserted replaced
215:a1768b48c8af 216:a8abff749575
    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 
    23 
    24 $Header: /cvs/stx/stx/libbasic/FileStream.st,v 1.16 1994-10-28 01:22:55 claus Exp $
    24 $Header: /cvs/stx/stx/libbasic/FileStream.st,v 1.17 1995-02-02 12:21:09 claus Exp $
    25 '!
    25 '!
    26 
    26 
    27 !FileStream class methodsFor:'documentation'!
    27 !FileStream class methodsFor:'documentation'!
    28 
    28 
    29 copyright
    29 copyright
    40 "
    40 "
    41 !
    41 !
    42 
    42 
    43 version
    43 version
    44 "
    44 "
    45 $Header: /cvs/stx/stx/libbasic/FileStream.st,v 1.16 1994-10-28 01:22:55 claus Exp $
    45 $Header: /cvs/stx/stx/libbasic/FileStream.st,v 1.17 1995-02-02 12:21:09 claus Exp $
    46 "
    46 "
    47 !
    47 !
    48 
    48 
    49 documentation
    49 documentation
    50 "
    50 "
    55     problems when a file is opened for readwrite. 
    55     problems when a file is opened for readwrite. 
    56     For best results, open files either readonly or writeonly.
    56     For best results, open files either readonly or writeonly.
    57 "
    57 "
    58 ! !
    58 ! !
    59 
    59 
    60 !FileStream class primitiveDefinitions!
    60 !FileStream primitiveDefinitions!
    61 
    61 
    62 %{
    62 %{
    63 #include <stdio.h>
    63 #include <stdio.h>
    64 #include <errno.h>
    64 #include <errno.h>
    65 
    65