From 055c5f9c5102cc3c55c336a5e23c12a314932101 Mon Sep 17 00:00:00 2001 From: Victor Fernandes Date: Mon, 30 Jan 2017 14:31:56 -0500 Subject: [PATCH] Update function comment header --- buffer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/buffer.c b/buffer.c index 2f83fec..faf86e4 100644 --- a/buffer.c +++ b/buffer.c @@ -26,8 +26,8 @@ - char o_mode (-1, 0, 1) * Return values: pBuffer or NULL * Algorithm: Allocates memory for the buffer descriptor. If successful, do bound - checks on function parameters and assign them to the buffer's variables. Otherwise - return NULL. + checks on function parameters and assign them to the buffer's variables. If + all is clear, allocate the character buffer. Otherwise return NULL. */ Buffer* b_create(short init_capacity, char inc_factor, char o_mode) { pBuffer pBD; /* Pointer to buffer descriptor */