/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright (c) 2001 by Sun Microsystems, Inc.
* All rights reserved.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
/*
* This module contains the glue functions necessary for gluing in
* the selected public module API into the private API.
*/
#include <stdlib.h>
#include <string.h>
#include <dhcp_svc_public.h>
/*
* Allocate a dt_rec_t structure. Argument values are copied and set
* to the respective fields within the allocated dt_rec_t structure.
* Caller is should free structure using free_dtrec().
*/
dt_rec_t *
{
return (NULL);
}
return (NULL);
}
return (retval);
}
/*
* Allocate a dn_rec_t structure. Argument values are copied and set
* to the respective fields within the allocated dn_rec_t structure.
*/
dn_rec_t *
const char *comment)
{
return (NULL);
}
sizeof (retval->dn_comment));
return (retval);
}
/*
* Prepend a dt_rec_t to a dt_rec_list_t; if `listp' is NULL, then
* the list is created.
*/
{
return (NULL);
}
return (retval);
}
/*
* Prepend a dn_rec_t to a dn_rec_list_t; if `listp' is NULL, then
* the list is created.
*/
{
return (NULL);
}
return (retval);
}
/*
* Free all elements of dtp, as well as the dt_rec_t structure itself.
*/
void
{
}
}
/*
* Free a list of dt_rec_t's
*/
void
{
}
}
/*
* Free the dn_rec_t structure.
*/
void
{
}
/*
* Free a list of dn_rec_t's
*/
void
{
}
}