SIM-115: update simulator to use latest E2SM KPM version 3
[sim/e2-interface.git] / e2sim / asn1c / NativeReal_print.c
1 /*
2  * Copyright (c) 2017 Lev Walkin <vlm@lionet.info>.
3  * All rights reserved.
4  * Redistribution and modifications are permitted subject to BSD license.
5  */
6 #include <asn_internal.h>
7 #include <NativeReal.h>
8 #include <REAL.h>
9
10 /*
11  * REAL specific human-readable output.
12  */
13 int
14 NativeReal_print(const asn_TYPE_descriptor_t *td, const void *sptr, int ilevel,
15                  asn_app_consume_bytes_f *cb, void *app_key) {
16     (void)ilevel;  /* Unused argument */
17
18     if(sptr) {
19         double d = NativeReal__get_double(td, sptr);
20         return (REAL__dump(d, 0, cb, app_key) < 0) ? -1 : 0;
21     } else {
22         return (cb("<absent>", 8, app_key) < 0) ? -1 : 0;
23     }
24 }