From 0b73aad2bf19ba56022dcd17ee9cf91d39bd665a Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Wed, 19 Dec 2001 06:00:19 +0000 Subject: Doc (This used to be commit 5dc2827b6eaca8f7b833fdf9977528084e3a3ff0) --- source3/lib/talloc.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'source3') diff --git a/source3/lib/talloc.c b/source3/lib/talloc.c index 45f9ed8004..e20cbbe7cb 100644 --- a/source3/lib/talloc.c +++ b/source3/lib/talloc.c @@ -20,7 +20,11 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* this is a very simple temporary memory allocator. To use it do the following: +/** + @defgroup talloc Simple memory allocator + @{ + + This is a very simple temporary memory allocator. To use it do the following: 1) when you first want to allocate a pool of meomry use talloc_init() and save the resulting context pointer somewhere @@ -225,3 +229,5 @@ char *talloc_strdup(TALLOC_CTX *t, const char *p) return ret; } + +/** @} */ -- cgit