([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:
mccallum 1996-01-24 15:41:04 +00:00
parent 410ac7ad28
commit c7a7c83655

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);