1
0
mirror of https://github.com/samba-team/samba.git synced 2025-07-29 15:42:04 +03:00

Doxygen demo for Tim.

This commit is contained in:
Martin Pool
-
parent 9f9d4cae1d
commit 5c892badbc
2 changed files with 31 additions and 11 deletions

View File

@ -61,9 +61,14 @@ void prs_debug(prs_struct *ps, int depth, char *desc, char *fn_name)
}
/*******************************************************************
Initialise a parse structure - malloc the data if requested.
********************************************************************/
/**
* Initialise an expandable parse structure.
*
* @param size Initial buffer size. If >0, a new buffer will be
* created with malloc().
*
* @return False if allocation fails, otherwise True.
**/
BOOL prs_init(prs_struct *ps, uint32 size, TALLOC_CTX *ctx, BOOL io)
{
ZERO_STRUCTP(ps);