/* Copyright (C) 1993 by Zardoz Software, Inc. */ #pragma Off (List) /******************************************************************************* * FILE NAME: ISO646.h * * TITLE: This function prototypes and data type definitions for the Wide Characters Functions. * * DATA_RIGHTS: Western Design Center and R & C Services Proprietary * Copyright(C) 1980-2004 * All rights reserved. Reproduction in any manner, * in whole or in part, is strictly prohibited without * the prior written approval of R & C Services or * Western Design Center. * * DESCRIPTION: This file describes function prototypes and data type * definitions used for Wide Character functions. * * * SPECIAL CONSIDERATIONS: * * * AUTHOR: R. Greenthal * * * CREATION DATE: March 17,2004 * * REVISION HISTORY * Name Date Description * ------------ ---------- ---------------------------------------------- * R. Greenthal 03/15/2004 Initial * 0x/xx/2004 Added * ******************************************************************************* */ #ifndef _ISO646_H #define _ISO646_H /* *=========================== CONSTANTS & MACROS =============================== */ #define and && #define and_eq &= #define bitand & #define bitor | #define compl ~ #define not ! #define not_eq != #define or || #define or_eq |= #define xor ^ #define xor_eq ^= #endif /* End of _ISO646_H */ #pragma Pop (List) /************************************** End of File ISO646.H ***************************************/