te
Copyright (C) 1998-2003, Carnegie Mellon Univeristy. All Rights Reserved.
Portions Copyright (C) 2003, Sun Microsystems, Inc. All Rights Reserved
sasl_set_alloc 3sasl "22 Oct 2003" SASL "SASL man pages"
NAME
sasl_set_alloc - set the memory allocation functions used by the SASL library
SYNOPSIS
cc [ flag ... ] file ... -lsasl [ library ... ]
 #include <sasl/sasl.h> 
 "void sasl_set_alloc(sasl_malloc_t *" m ", "  " sasl_calloc_t *" c ", "  " sasl_realloc_t *" r ", "  " sasl_free_t *" f "); " 
DESCRIPTION
Use the sasl_set_alloc() interface to set the memory allocation routines that the SASL library and plug-ins will use.
PARAMETERS
m A pointer to a malloc() function c A pointer to a calloc() function r A pointer to a realloc() function f A pointer to a free() function
"RETURN VALUES"
sasl_set_alloc() has no return values.