Add a few comments

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@14604 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
CaS 2002-09-30 08:33:25 +00:00
parent 204c190f2f
commit a53e187539

View file

@ -108,6 +108,10 @@ static NSString* NotificationKey = @"NSFileHandleNotificationKey";
@implementation GSFileHandle
/**
* Encapsulates low level read operation to get data from the operating
* system.
*/
- (int) read: (void*)buf length: (int)len
{
#if USE_ZLIB
@ -128,6 +132,10 @@ static NSString* NotificationKey = @"NSFileHandleNotificationKey";
return len;
}
/**
* Encapsulates low level write operation to send data to the operating
* system.
*/
- (int) write: (const void*)buf length: (int)len
{
#if USE_ZLIB