([StdioStream -closeStream]): New method.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@809 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Andrew McCallum 1996-01-24 15:41:04 +00:00
parent 91f6d02e64
commit fcd9e82663

View file

@ -191,6 +191,13 @@ stdio_unchar_func(void *s, int c)
fflush(fp);
}
- (void) closeStream
{
fclose(fp);
}
/* xxx Add "- (BOOL) isOpen" method? */
- (void) rewindStream
{
rewind(fp);