11414Scindi /* 21414Scindi * CDDL HEADER START 31414Scindi * 41414Scindi * The contents of this file are subject to the terms of the 5*1865Sdilpreet * Common Development and Distribution License (the "License"). 6*1865Sdilpreet * You may not use this file except in compliance with the License. 71414Scindi * 81414Scindi * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 91414Scindi * or http://www.opensolaris.org/os/licensing. 101414Scindi * See the License for the specific language governing permissions 111414Scindi * and limitations under the License. 121414Scindi * 131414Scindi * When distributing Covered Code, include this CDDL HEADER in each 141414Scindi * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 151414Scindi * If applicable, add the following below this CDDL HEADER, with the 161414Scindi * fields enclosed by brackets "[]" replaced with your own identifying 171414Scindi * information: Portions Copyright [yyyy] [name of copyright owner] 181414Scindi * 191414Scindi * CDDL HEADER END 201414Scindi */ 211414Scindi /* 221414Scindi * Copyright 2006 Sun Microsystems, Inc. All rights reserved. 231414Scindi * Use is subject to license terms. 241414Scindi * 251414Scindi * iexpr.h -- public definitions for iexpr module 261414Scindi * 271414Scindi */ 281414Scindi 291414Scindi #ifndef _EFT_IEXPR_H 301414Scindi #define _EFT_IEXPR_H 311414Scindi 321414Scindi #pragma ident "%Z%%M% %I% %E% SMI" 331414Scindi 341414Scindi #ifdef __cplusplus 351414Scindi extern "C" { 361414Scindi #endif 371414Scindi 381414Scindi void iexpr_init(void); 391414Scindi struct node *iexpr(struct node *np); 401414Scindi int iexpr_cached(struct node *np); 41*1865Sdilpreet void iexpr_free(struct node *np); 421414Scindi void iexpr_fini(void); 431414Scindi 441414Scindi #ifdef __cplusplus 451414Scindi } 461414Scindi #endif 471414Scindi 481414Scindi #endif /* _EFT_IEXPR_H */ 49