1 /* $NetBSD: rewrite-map.h,v 1.1.1.3 2010/12/12 15:22:13 adam Exp $ */ 2 3 /* OpenLDAP: pkg/ldap/libraries/librewrite/rewrite-map.h,v 1.7.2.5 2010/04/13 20:23:08 kurt Exp */ 4 /* This work is part of OpenLDAP Software <http://www.openldap.org/>. 5 * 6 * Copyright 2000-2010 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