Adding initial code jy.oak@samsung.com
[ric-app/kpimon.git] / asn1c_defs / all-defs / BIT_STRING.h
diff --git a/asn1c_defs/all-defs/BIT_STRING.h b/asn1c_defs/all-defs/BIT_STRING.h
new file mode 100755 (executable)
index 0000000..a4e2922
--- /dev/null
@@ -0,0 +1,48 @@
+/*-\r
+ * Copyright (c) 2003-2017 Lev Walkin <vlm@lionet.info>. All rights reserved.\r
+ * Redistribution and modifications are permitted subject to BSD license.\r
+ */\r
+#ifndef        _BIT_STRING_H_\r
+#define        _BIT_STRING_H_\r
+\r
+#include <OCTET_STRING.h>      /* Some help from OCTET STRING */\r
+\r
+#ifdef __cplusplus\r
+extern "C" {\r
+#endif\r
+\r
+typedef struct BIT_STRING_s {\r
+       uint8_t *buf;   /* BIT STRING body */\r
+       size_t size;    /* Size of the above buffer */\r
+\r
+       int bits_unused;/* Unused trailing bits in the last octet (0..7) */\r
+\r
+       asn_struct_ctx_t _asn_ctx;      /* Parsing across buffer boundaries */\r
+} BIT_STRING_t;\r
+\r
+extern asn_TYPE_descriptor_t asn_DEF_BIT_STRING;\r
+extern asn_TYPE_operation_t asn_OP_BIT_STRING;\r
+extern asn_OCTET_STRING_specifics_t asn_SPC_BIT_STRING_specs;\r
+\r
+asn_struct_print_f BIT_STRING_print;   /* Human-readable output */\r
+asn_struct_compare_f BIT_STRING_compare;\r
+asn_constr_check_f BIT_STRING_constraint;\r
+xer_type_encoder_f BIT_STRING_encode_xer;\r
+oer_type_decoder_f BIT_STRING_decode_oer;\r
+oer_type_encoder_f BIT_STRING_encode_oer;\r
+per_type_decoder_f BIT_STRING_decode_uper;\r
+per_type_encoder_f BIT_STRING_encode_uper;\r
+asn_random_fill_f  BIT_STRING_random_fill;\r
+\r
+#define BIT_STRING_free              OCTET_STRING_free\r
+#define BIT_STRING_decode_ber        OCTET_STRING_decode_ber\r
+#define BIT_STRING_encode_der        OCTET_STRING_encode_der\r
+#define BIT_STRING_decode_xer        OCTET_STRING_decode_xer_binary\r
+#define BIT_STRING_decode_aper       OCTET_STRING_decode_aper\r
+#define BIT_STRING_encode_aper       OCTET_STRING_encode_aper\r
+\r
+#ifdef __cplusplus\r
+}\r
+#endif\r
+\r
+#endif /* _BIT_STRING_H_ */\r