writeBuffer.h 193 Bytes
#ifndef __WRITE_BUFFER_H__
#define __WRITE_BUFFER_H__

#include <stdio.h> /* for FILE */

int writeBuffer(char ** buffer, unsigned int * readPos, FILE * wHandle);

#endif // __WRITE_BUFFER_H__