xref: /netbsd-src/external/bsd/openldap/dist/libraries/librewrite/rewrite-map.h (revision b7b7574d3bf8eeb51a1fa3977b59142ec6434a55)
1 /*	$NetBSD: rewrite-map.h,v 1.1.1.4 2014/05/28 09:58:45 tron Exp $	*/
2 
3 /* $OpenLDAP$ */
4 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
5  *
6  * Copyright 2000-2014 The OpenLDAP Foundation.
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted only as authorized by the OpenLDAP
11  * Public License.
12  *
13  * A copy of this license is available in the file LICENSE in the
14  * top-level directory of the distribution or, alternatively, at
15  * <http://www.OpenLDAP.org/license.html>.
16  */
17 /* ACKNOWLEDGEMENT:
18  * This work was initially developed by Pierangelo Masarati for
19  * inclusion in OpenLDAP Software.
20  */
21 
22 #ifndef MAP_H
23 #define MAP_H
24 
25 /*
26  * Retrieves a builtin map
27  */
28 LDAP_REWRITE_F (struct rewrite_builtin_map *)
29 rewrite_builtin_map_find(
30                 struct rewrite_info *info,
31                 const char *name
32 );
33 
34 #endif /* MAP_H */
35