1 /* -*- mode: c ; c-file-style: "canonware-c-style" -*-
2  ******************************************************************************
3  *
4  * Copyright (C) 1996-2005 Jason Evans <jasone@canonware.com>.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice(s), this list of conditions and the following disclaimer
12  *    unmodified other than the allowable addition of one or more
13  *    copyright notices.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice(s), this list of conditions and the following disclaimer in
16  *    the documentation and/or other materials provided with the
17  *    distribution.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) ``AS IS'' AND ANY
20  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) BE
23  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
26  * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
27  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
28  * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
29  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30  *
31  ******************************************************************************
32  *
33  * Version: Onyx 5.1.2
34  *
35  ******************************************************************************/
36 
37 
38 #ifndef CW_USE_INLINES
39 void
40 nxo_real_new(cw_nxo_t *a_nxo, cw_nxor_t a_val);
41 
42 cw_nxor_t
43 nxo_real_get(const cw_nxo_t *a_nxo);
44 
45 void
46 nxo_real_set(cw_nxo_t *a_nxo, cw_nxor_t a_val);
47 #endif
48 
49 #if (defined(CW_USE_INLINES) || defined(CW_NXO_REAL_C_))
50 CW_INLINE void
nxo_real_new(cw_nxo_t * a_nxo,cw_nxor_t a_val)51 nxo_real_new(cw_nxo_t *a_nxo, cw_nxor_t a_val)
52 {
53     cw_check_ptr(a_nxo);
54 
55     nxo_p_new(a_nxo, NXOT_REAL);
56     a_nxo->o.real.r = a_val;
57 }
58 
59 CW_INLINE cw_nxor_t
nxo_real_get(const cw_nxo_t * a_nxo)60 nxo_real_get(const cw_nxo_t *a_nxo)
61 {
62     cw_check_ptr(a_nxo);
63     cw_dassert(a_nxo->magic == CW_NXO_MAGIC);
64     cw_assert(nxo_type_get(a_nxo) == NXOT_REAL);
65 
66     return a_nxo->o.real.r;
67 }
68 
69 CW_INLINE void
nxo_real_set(cw_nxo_t * a_nxo,cw_nxor_t a_val)70 nxo_real_set(cw_nxo_t *a_nxo, cw_nxor_t a_val)
71 {
72     cw_check_ptr(a_nxo);
73     cw_dassert(a_nxo->magic == CW_NXO_MAGIC);
74     cw_assert(nxo_type_get(a_nxo) == NXOT_REAL);
75 
76     a_nxo->o.real.r = a_val;
77 }
78 #endif /* (defined(CW_USE_INLINES) || defined(CW_NXO_REAL_C_)) */
79