webengine/wmlengine/src/utils/include/nwx_float.h
changeset 0 dd21522fd290
equal deleted inserted replaced
-1:000000000000 0:dd21522fd290
       
     1 /*
       
     2 * Copyright (c) 1999 - 2001 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of the License "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description: 
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 /***************************************************************************
       
    20 **   File: nwx_float.h
       
    21 **   Purpose:  Provides the interface to platform-dependant float functions
       
    22 **************************************************************************/
       
    23 
       
    24 #ifndef NWX_FLOAT_H
       
    25 #define NWX_FLOAT_H
       
    26 
       
    27 #ifdef __cplusplus
       
    28 extern "C" {
       
    29 #endif
       
    30 
       
    31 /*
       
    32 ** Includes
       
    33 */
       
    34 
       
    35 #include "nwx_defs.h"
       
    36 #include "float.h"
       
    37 
       
    38 /*
       
    39 ** Type Declarations
       
    40 */
       
    41 
       
    42 /*
       
    43 ** Global Function Declarations
       
    44 */
       
    45 extern NW_Bool is_finite_float64(NW_Float64 d);
       
    46 
       
    47 extern NW_Bool is_zero_float64(NW_Float64 d);
       
    48 
       
    49 
       
    50 #ifdef __cplusplus
       
    51 } /* extern "C" */
       
    52 #endif
       
    53 
       
    54 #endif /* NWX_FLOAT_H */