blob: fb1d86a11465bd05384eb59f189bc5da60afdfe4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/** BEGIN COPYRIGHT BLOCK
* Copyright 2001 Sun Microsystems, Inc.
* Portions copyright 1999, 2001-2003 Netscape Communications Corporation.
* All rights reserved.
* END COPYRIGHT BLOCK **/
NSPR_BEGIN_EXTERN_C
/*
* access_plhash.cpp - supplement to NSPR plhash
*/
extern void *
ACL_HashTableLookup_const(
void *ht, /* really a PLHashTable */
const void *key);
NSPR_END_EXTERN_C
|