about summary refs log tree commit diff
path: root/lib
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2020-06-08 14:51:37 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2020-06-08 14:51:37 +0000
commitf208e264d1811e539af8a76578e5570cf03e27af (patch)
tree2fd5c088ecdb54c50d8fa0e32aec7c03b4ed5084 /lib
parenta4a26e248d3780562ec0e20600d391b08434981b (diff)
downloadnetpbm-mirror-f208e264d1811e539af8a76578e5570cf03e27af.tar.gz
netpbm-mirror-f208e264d1811e539af8a76578e5570cf03e27af.tar.xz
netpbm-mirror-f208e264d1811e539af8a76578e5570cf03e27af.zip
add comments
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@3856 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'lib')
-rw-r--r--lib/pm_system.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/pm_system.h b/lib/pm_system.h
index dfcd5b3f..58e17f05 100644
--- a/lib/pm_system.h
+++ b/lib/pm_system.h
@@ -76,8 +76,15 @@ pm_accept_null(int    const pipetosuckFd,
 struct bufferDesc {
     /* This is just a parameter for the routines below */
     unsigned int    size;
+       /* For a read operation, number amount of space available to store
+          data read.  For a write operation, number of bytes of data available.
+       */
     unsigned char * buffer;
     unsigned int *  bytesTransferredP;
+        /* The function returns the number of bytes placed in the buffer or
+           extracted from the buffer here.  NULL if you don't want that
+           information.
+        */
 };