From 14fd7bf27dd0d320f29dc3db163e244e150c7501 Mon Sep 17 00:00:00 2001 From: Karel Klic Date: Wed, 5 May 2010 15:03:03 +0200 Subject: comments --- lib/Utils/strbuf.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/Utils') diff --git a/lib/Utils/strbuf.h b/lib/Utils/strbuf.h index 8b43424a..bc843f95 100644 --- a/lib/Utils/strbuf.h +++ b/lib/Utils/strbuf.h @@ -26,9 +26,9 @@ extern "C" { struct strbuf { - /* Size of the allocated buffer. */ + /* Size of the allocated buffer. Always > 0. */ int alloc; - /* Length of the message. */ + /* Length of the message, without the ending \0. */ int len; char *buf; }; -- cgit