SIM-115: update simulator to use latest E2SM KPM version 3
[sim/e2-interface.git] / e2sim / asn1c / NativeReal_jer.c
diff --git a/e2sim/asn1c/NativeReal_jer.c b/e2sim/asn1c/NativeReal_jer.c
new file mode 100644 (file)
index 0000000..9c62208
--- /dev/null
@@ -0,0 +1,23 @@
+/*
+ * Copyright (c) 2017 Lev Walkin <vlm@lionet.info>.
+ * All rights reserved.
+ * Redistribution and modifications are permitted subject to BSD license.
+ */
+#include <asn_internal.h>
+#include <NativeReal.h>
+#include <REAL.h>
+
+asn_enc_rval_t
+ NativeReal_encode_jer(const asn_TYPE_descriptor_t *td, const void *sptr,
+                      int ilevel, enum jer_encoder_flags_e flags,
+                      asn_app_consume_bytes_f *cb, void *app_key) {
+    double d = NativeReal__get_double(td, sptr);
+    asn_enc_rval_t er = {0,0,0};
+
+    (void)ilevel;
+
+    er.encoded = REAL__dump(d, flags, cb, app_key);
+    if(er.encoded < 0) ASN__ENCODE_FAILED;
+
+    ASN__ENCODED_OK(er);
+}