mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
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:
parent
204c190f2f
commit
a53e187539
1 changed files with 8 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue