blob: 503e254608b97a0ff483c971dd4a193e6e4fd6d7 [file] [log] [blame]
Harald Welte92c45f32010-06-12 18:59:38 +02001/*-
2 * Copyright (c) 2004 Lev Walkin <vlm@lionet.info>. All rights reserved.
3 * Redistribution and modifications are permitted subject to BSD license.
4 */
5#ifndef ASN_TYPE_REAL_H
6#define ASN_TYPE_REAL_H
7
8#include <asn_application.h>
9#include <asn_codecs_prim.h>
10
11#ifdef __cplusplus
12extern "C" {
13#endif
14
15typedef ASN__PRIMITIVE_TYPE_t REAL_t;
16
17extern asn_TYPE_descriptor_t asn_DEF_REAL;
18
19asn_struct_print_f REAL_print;
20xer_type_decoder_f REAL_decode_xer;
21xer_type_encoder_f REAL_encode_xer;
Harald Welteec0e2172010-07-20 00:03:44 +020022per_type_decoder_f REAL_decode_uper;
23per_type_encoder_f REAL_encode_uper;
Harald Welte41b85d52015-08-31 08:56:53 +020024per_type_decoder_f REAL_decode_aper;
25per_type_encoder_f REAL_encode_aper;
Harald Welte92c45f32010-06-12 18:59:38 +020026
27/***********************************
28 * Some handy conversion routines. *
29 ***********************************/
30
31ssize_t REAL__dump(double d, int canonical, asn_app_consume_bytes_f *cb, void *app_key);
32
33/*
34 * Convert between native double type and REAL representation (DER).
35 * RETURN VALUES:
36 * 0: Value converted successfully
37 * -1: An error occured while converting the value: invalid format.
38 */
39int asn_REAL2double(const REAL_t *real_ptr, double *d);
40int asn_double2REAL(REAL_t *real_ptr, double d);
41
42#ifdef __cplusplus
43}
44#endif
45
46#endif /* ASN_TYPE_REAL_H */