blob: a4e2b8923755f8fb469bf43a7d93f9cc490a1715 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/** BEGIN COPYRIGHT BLOCK
* Copyright (C) 2001 Sun Microsystems, Inc. Used by permission.
* Copyright (C) 2005 Red Hat, Inc.
* 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
|