Change version after creation of r2 branch
[ric-plt/resource-status-manager.git] / RSM / asn1codec / e2ap_engine / BIT_STRING.h
1
2 /*-
3  * Copyright (c) 2003-2017 Lev Walkin <vlm@lionet.info>. All rights reserved.
4  * Redistribution and modifications are permitted subject to BSD license.
5  */
6 #ifndef _BIT_STRING_H_
7 #define _BIT_STRING_H_
8
9 #include <OCTET_STRING.h>       /* Some help from OCTET STRING */
10
11 #ifdef __cplusplus
12 extern "C" {
13 #endif
14
15 typedef struct BIT_STRING_s {
16         uint8_t *buf;   /* BIT STRING body */
17         size_t size;    /* Size of the above buffer */
18
19         int bits_unused;/* Unused trailing bits in the last octet (0..7) */
20
21         asn_struct_ctx_t _asn_ctx;      /* Parsing across buffer boundaries */
22 } BIT_STRING_t;
23
24 extern asn_TYPE_descriptor_t asn_DEF_BIT_STRING;
25 extern asn_TYPE_operation_t asn_OP_BIT_STRING;
26 extern asn_OCTET_STRING_specifics_t asn_SPC_BIT_STRING_specs;
27
28 asn_struct_print_f BIT_STRING_print;    /* Human-readable output */
29 asn_struct_compare_f BIT_STRING_compare;
30 asn_constr_check_f BIT_STRING_constraint;
31 xer_type_encoder_f BIT_STRING_encode_xer;
32 oer_type_decoder_f BIT_STRING_decode_oer;
33 oer_type_encoder_f BIT_STRING_encode_oer;
34 per_type_decoder_f BIT_STRING_decode_uper;
35 per_type_encoder_f BIT_STRING_encode_uper;
36 asn_random_fill_f  BIT_STRING_random_fill;
37
38 #define BIT_STRING_free              OCTET_STRING_free
39 #define BIT_STRING_decode_ber        OCTET_STRING_decode_ber
40 #define BIT_STRING_encode_der        OCTET_STRING_encode_der
41 #define BIT_STRING_decode_xer        OCTET_STRING_decode_xer_binary
42 #define BIT_STRING_decode_aper       OCTET_STRING_decode_aper
43 #define BIT_STRING_encode_aper       OCTET_STRING_encode_aper
44
45 #ifdef __cplusplus
46 }
47 #endif
48
49 #endif  /* _BIT_STRING_H_ */