40 lines
794 B
C
Executable File
40 lines
794 B
C
Executable File
/* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */
|
|
/* All Rights Reserved */
|
|
|
|
/* THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T */
|
|
/* The copyright notice above does not evidence any */
|
|
/* actual or intended publication of such source code. */
|
|
|
|
#ident "@(#)TLgetentry.c 1.5 92/07/14 SMI" /* SVr4.0 1.3 */
|
|
#include <table.h>
|
|
#include <internal.h>
|
|
|
|
extern tbl_t TLtables[];
|
|
|
|
ENTRY
|
|
TLgetentry( tid )
|
|
int tid;
|
|
{
|
|
entry_t *Te_malloc();
|
|
/* Initialize TLlib, if needed */
|
|
TLinit();
|
|
|
|
tid--;
|
|
if( !TLt_valid( tid ) ) return( NULL );
|
|
|
|
return( (ENTRY)TLe_malloc() );
|
|
}
|
|
|
|
int
|
|
TLfreeentry( tid, entry )
|
|
entry_t *entry;
|
|
{
|
|
void e_free();
|
|
tid--;
|
|
if( !TLt_valid( tid ) ) return( TLBADID );
|
|
if( !entry ) return( TLARGS );
|
|
TLe_free( entry );
|
|
(void) Free( entry );
|
|
return( TLOK );
|
|
}
|