xref: /netbsd-src/external/bsd/openldap/dist/libraries/librewrite/rewrite-map.h (revision 549b59ed3ccf0d36d3097190a0db27b770f3a839)
1 /*	$NetBSD: rewrite-map.h,v 1.3 2021/08/14 16:14:58 christos Exp $	*/
2 
3 /* $OpenLDAP$ */
4 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
5  *
6  * Copyright 2000-2021 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