#ifndef _COMMLIB_CHILD_H_
#define _COMMLIB_CHILD_H_

#include "commlib-common.h"


/* child_write_block_to_parent: duh. */
void child_write_block_to_parent(char *data, int n);
/* child_req_block_from_parent: returns number of bytes read */
int child_req_block_from_parent(char *dest);


#endif /* ifdef _COMMLIB_CHILD_H_ */
