├── .clang-format ├── .gitignore ├── .travis.yml ├── AUTHORS ├── BUGS ├── ChangeLog ├── FAQ ├── INSTALL.md ├── LICENSE ├── Makefile.am ├── README.md ├── REQUIREMENTS.md ├── asn1-tools ├── Makefile.am ├── README ├── check-xxber.sh ├── enber │ ├── Makefile.am │ └── enber.c └── unber │ ├── Makefile.am │ ├── check_unber.c │ ├── check_unber.sh │ ├── libasn1_unber_tool.c │ ├── libasn1_unber_tool.h │ └── unber.c ├── asn1c ├── Makefile.am ├── README └── asn1c.c ├── configure.ac ├── doc ├── Makefile.am ├── asn1c-quick.pdf ├── asn1c-usage.pdf ├── docsrc │ ├── Makefile.am │ ├── asn1c-usage.tex │ ├── asn_dec_rval.inc │ └── asn_enc_rval.inc └── man │ ├── Makefile.am │ ├── asn1c.1 │ ├── asn1c.man.md │ ├── enber.1 │ ├── enber.man.md │ ├── unber.1 │ └── unber.man.md ├── examples ├── Makefile.am ├── README ├── crfc2asn1.pl ├── rfc3280.txt ├── rfc3525.txt ├── rfc4511.txt ├── rrc-7.1.0.asn1 ├── sample.makefile.regen ├── sample.source.1609.2 │ ├── Makefile │ ├── README │ ├── config.h │ ├── sample-Certificate-1.coer │ ├── sample-Certificate-1.xer │ ├── sample-Certificate-2.coer │ ├── sample-Certificate-2.xer │ └── sample-Ieee1609Dot2Data-1.coer ├── sample.source.J2735 │ ├── Makefile │ ├── README │ ├── config.h │ ├── sample-MessageFrame-1.der │ ├── sample-MessageFrame-1.per │ └── sample-MessageFrame-1.xer ├── sample.source.LDAP3 │ ├── Makefile │ ├── README │ ├── config.h │ └── sample-LDAPMessage-1.ber ├── sample.source.LTE-RRC │ ├── Makefile │ ├── README │ ├── config.h │ └── sample-BCCH-BCH-Message-1.per ├── sample.source.MEGACO │ ├── Makefile │ ├── README │ └── config.h ├── sample.source.MHEG5 │ ├── Makefile │ ├── README │ ├── config.h │ └── sample-InterchangedObject-1.xer ├── sample.source.PKIX1 │ ├── Makefile │ ├── README │ ├── config.h │ └── sample-Certificate-1.der ├── sample.source.RRC │ ├── Makefile │ ├── README │ ├── config.h │ ├── sample-BCCH-BCH-Message-2.per │ ├── sample-DL-CCCH-Message-2-nopad.per │ ├── sample-DL-DCCH-Message-1-nopad.per │ └── sample-DL-DCCH-Message-1.per ├── sample.source.TAP3 │ ├── Makefile │ ├── README │ ├── config.h │ └── sample-DataInterChange-1.ber └── sample.source.ULP │ ├── Makefile │ ├── README │ ├── config.h │ ├── sample-ULP-PDU-1.per │ ├── sample-ULP-PDU-1.xer │ └── sample-ULP-PDU-2.per ├── libasn1common ├── Makefile.am ├── asn1_buffer.c ├── asn1_buffer.h ├── asn1_common.h ├── asn1_namespace.c ├── asn1_namespace.h ├── asn1_ref.c ├── asn1_ref.h ├── genhash.c └── genhash.h ├── libasn1compiler ├── Makefile.am ├── asn1c_C.c ├── asn1c_C.h ├── asn1c_compat.c ├── asn1c_compat.h ├── asn1c_constraint.c ├── asn1c_constraint.h ├── asn1c_fdeps.c ├── asn1c_fdeps.h ├── asn1c_internal.h ├── asn1c_ioc.c ├── asn1c_ioc.h ├── asn1c_lang.c ├── asn1c_lang.h ├── asn1c_misc.c ├── asn1c_misc.h ├── asn1c_naming.c ├── asn1c_naming.h ├── asn1c_out.c ├── asn1c_out.h ├── asn1c_save.c ├── asn1c_save.h ├── asn1compiler.c ├── asn1compiler.h └── check_compiler.c ├── libasn1fix ├── Makefile.am ├── asn1fix.c ├── asn1fix.h ├── asn1fix_bitstring.c ├── asn1fix_bitstring.h ├── asn1fix_class.c ├── asn1fix_class.h ├── asn1fix_compat.c ├── asn1fix_compat.h ├── asn1fix_constr.c ├── asn1fix_constr.h ├── asn1fix_constraint.c ├── asn1fix_constraint.h ├── asn1fix_constraint_compat.c ├── asn1fix_crange.c ├── asn1fix_crange.h ├── asn1fix_cstring.c ├── asn1fix_cstring.h ├── asn1fix_cws.c ├── asn1fix_cws.h ├── asn1fix_dereft.c ├── asn1fix_dereft.h ├── asn1fix_derefv.c ├── asn1fix_derefv.h ├── asn1fix_enum.c ├── asn1fix_enum.h ├── asn1fix_export.c ├── asn1fix_export.h ├── asn1fix_integer.c ├── asn1fix_integer.h ├── asn1fix_internal.h ├── asn1fix_misc.c ├── asn1fix_misc.h ├── asn1fix_param.c ├── asn1fix_param.h ├── asn1fix_retrieve.c ├── asn1fix_retrieve.h ├── asn1fix_tags.c ├── asn1fix_tags.h ├── asn1fix_value.c ├── asn1fix_value.h └── check_fixer.c ├── libasn1parser ├── Makefile.am ├── asn1p_class.c ├── asn1p_class.h ├── asn1p_constr.c ├── asn1p_constr.h ├── asn1p_expr.c ├── asn1p_expr.h ├── asn1p_expr2uclass.h ├── asn1p_expr_str.h ├── asn1p_integer.c ├── asn1p_integer.h ├── asn1p_l.c ├── asn1p_l.l ├── asn1p_list.h ├── asn1p_module.c ├── asn1p_module.h ├── asn1p_oid.c ├── asn1p_oid.h ├── asn1p_param.c ├── asn1p_param.h ├── asn1p_value.c ├── asn1p_value.h ├── asn1p_xports.c ├── asn1p_xports.h ├── asn1p_y.c ├── asn1p_y.h ├── asn1p_y.y ├── asn1parser.c ├── asn1parser.h ├── check_asn1p_integer.c └── expr-h.pl ├── libasn1print ├── Makefile.am ├── README ├── asn1print.c └── asn1print.h ├── m4 ├── ax_check_compile_and_link_flag.m4 ├── ax_check_compile_flag.m4 └── ax_code_coverage.m4 ├── skeletons ├── ANY.c ├── ANY.h ├── BIT_STRING.c ├── BIT_STRING.h ├── BIT_STRING_oer.c ├── BMPString.c ├── BMPString.h ├── BOOLEAN.c ├── BOOLEAN.h ├── ENUMERATED.c ├── ENUMERATED.h ├── GeneralString.c ├── GeneralString.h ├── GeneralizedTime.c ├── GeneralizedTime.h ├── GraphicString.c ├── GraphicString.h ├── IA5String.c ├── IA5String.h ├── INTEGER.c ├── INTEGER.h ├── INTEGER_oer.c ├── ISO646String.c ├── ISO646String.h ├── Makefile.am ├── NULL.c ├── NULL.h ├── NativeEnumerated.c ├── NativeEnumerated.h ├── NativeEnumerated_oer.c ├── NativeInteger.c ├── NativeInteger.h ├── NativeInteger_oer.c ├── NativeReal.c ├── NativeReal.h ├── NumericString.c ├── NumericString.h ├── OBJECT_IDENTIFIER.c ├── OBJECT_IDENTIFIER.h ├── OCTET_STRING.c ├── OCTET_STRING.h ├── OCTET_STRING_oer.c ├── OPEN_TYPE.c ├── OPEN_TYPE.h ├── OPEN_TYPE_oer.c ├── ObjectDescriptor.c ├── ObjectDescriptor.h ├── PrintableString.c ├── PrintableString.h ├── README ├── REAL.c ├── REAL.h ├── RELATIVE-OID.c ├── RELATIVE-OID.h ├── T61String.c ├── T61String.h ├── TeletexString.c ├── TeletexString.h ├── UTCTime.c ├── UTCTime.h ├── UTF8String.c ├── UTF8String.h ├── UniversalString.c ├── UniversalString.h ├── VideotexString.c ├── VideotexString.h ├── VisibleString.c ├── VisibleString.h ├── asn_SEQUENCE_OF.c ├── asn_SEQUENCE_OF.h ├── asn_SET_OF.c ├── asn_SET_OF.h ├── asn_application.c ├── asn_application.h ├── asn_bit_data.c ├── asn_bit_data.h ├── asn_codecs.h ├── asn_codecs_prim.c ├── asn_codecs_prim.h ├── asn_internal.c ├── asn_internal.h ├── asn_ioc.h ├── asn_random_fill.c ├── asn_random_fill.h ├── asn_system.h ├── ber_decoder.c ├── ber_decoder.h ├── ber_tlv_length.c ├── ber_tlv_length.h ├── ber_tlv_tag.c ├── ber_tlv_tag.h ├── constr_CHOICE.c ├── constr_CHOICE.h ├── constr_CHOICE_oer.c ├── constr_SEQUENCE.c ├── constr_SEQUENCE.h ├── constr_SEQUENCE_OF.c ├── constr_SEQUENCE_OF.h ├── constr_SEQUENCE_oer.c ├── constr_SET.c ├── constr_SET.h ├── constr_SET_OF.c ├── constr_SET_OF.h ├── constr_SET_OF_oer.c ├── constr_TYPE.c ├── constr_TYPE.h ├── constraints.c ├── constraints.h ├── converter-example.c ├── der_encoder.c ├── der_encoder.h ├── file-dependencies ├── oer_decoder.c ├── oer_decoder.h ├── oer_encoder.c ├── oer_encoder.h ├── oer_support.c ├── oer_support.h ├── per_decoder.c ├── per_decoder.h ├── per_encoder.c ├── per_encoder.h ├── per_opentype.c ├── per_opentype.h ├── per_support.c ├── per_support.h ├── standard-modules │ ├── ASN1-Object-Identifier-Module.asn1 │ ├── ASN1C-UsefulInformationObjectClasses.asn1 │ └── README ├── xer_decoder.c ├── xer_decoder.h ├── xer_encoder.c ├── xer_encoder.h ├── xer_support.c └── xer_support.h └── tests ├── Makefile.am ├── README ├── tests-asn1c-compiler ├── 00-empty-OK.asn1 ├── 01-empty-OK.asn1 ├── 02-garbage-NP.asn1 ├── 03-enum-OK.asn1 ├── 03-enum-OK.asn1.-EF ├── 03-enum-OK.asn1.-Pfwide-types ├── 04-enum-SE.asn1 ├── 04-enum-SE.asn1.-E ├── 05-enum-SE.asn1 ├── 06-enum-SE.asn1 ├── 07-int-OK.asn1 ├── 07-int-OK.asn1.-EF ├── 08-int-SE.asn1 ├── 09-int-SE.asn1 ├── 10-int-OK.asn1 ├── 100-class-ref-OK.asn1 ├── 100-class-ref-OK.asn1.-EF ├── 101-class-ref-SE.asn1 ├── 102-class-ref-SE.asn1 ├── 102-class-ref-SE.asn1.-EF ├── 103-reference-SE.asn1 ├── 104-param-1-OK.asn1 ├── 104-param-1-OK.asn1.-EFprint-class-matrix ├── 104-param-1-OK.asn1.-Pfwide-types ├── 105-param-2-OK.asn1 ├── 105-param-2-OK.asn1.-Pfwide-types ├── 106-param-constr-OK.asn1 ├── 106-param-constr-OK.asn1.-P ├── 107-param-constr-2-OK.asn1 ├── 108-param-constr-3-OK.asn1 ├── 108-param-constr-3-OK.asn1.-Pfwide-types ├── 109-bit-string-NP.asn1 ├── 11-int-SE.asn1 ├── 110-param-3-OK.asn1 ├── 110-param-3-OK.asn1.-Pfcompound-names ├── 111-param-4-SE.asn1 ├── 112-param-class-OK.asn1 ├── 112-param-class-OK.asn1.-EF ├── 113-bit-string-SE.asn1 ├── 114-bit-string-NP.asn1 ├── 115-bit-string-OK.asn1 ├── 116-bit-string-SE.asn1 ├── 117-real-constraint-OK.asn1 ├── 117-real-constraint-OK.asn1.-EF ├── 118-per-constraint-OK.asn1 ├── 118-per-constraint-OK.asn1.-EFprint-constraints ├── 119-per-strings-OK.asn1 ├── 119-per-strings-OK.asn1.-EF ├── 119-per-strings-OK.asn1.-Pgen-PER ├── 12-int-SE.asn1 ├── 121-empty-imports-OK.asn1 ├── 121-empty-imports-OK.asn1.-EF ├── 122-pattern-OK.asn1 ├── 123-valueassignment-OK.asn1 ├── 123-valueassignment-OK.asn1.-EF ├── 124-multiconstraint-OK.asn1 ├── 124-multiconstraint-OK.asn1.-EF ├── 125-bitstring-constraint-OK.asn1 ├── 125-bitstring-constraint-OK.asn1.-EF ├── 125-bitstring-constraint-OK.asn1.-P ├── 125-bitstring-constraint-OK.asn1.-X ├── 126-per-extensions-OK.asn1 ├── 126-per-extensions-OK.asn1.-Pgen-PER ├── 127-per-long-OK.asn1 ├── 127-per-long-OK.asn1.-Pgen-PER ├── 128-enum-SE.asn1 ├── 129-enum-OK.asn1 ├── 129-enum-OK.asn1.-EF ├── 129-enum-SE.asn1 ├── 13-resolver-OK.asn1 ├── 130-enum-OK.asn1 ├── 130-enum-OK.asn1.-EF ├── 131-per-empty-OK.asn1 ├── 131-per-empty-OK.asn1.-Pgen-PER ├── 132-per-choice-OK.asn1 ├── 133-per-constraints-OK.asn1 ├── 134-per-long-OK.asn1 ├── 134-per-long-OK.asn1.-Pgen-PER ├── 135-oer-short-OK.asn1 ├── 136-oer-long-OK.asn1 ├── 136-oer-long-OK.asn1.-Pgen-OER ├── 137-oer-string-OK.asn1 ├── 137-oer-string-OK.asn1.-Pgen-OER ├── 138-oer-constraints-OK.asn1 ├── 138-oer-constraints-OK.asn1.-Pgen-OER ├── 139-component-relation-OK.asn1 ├── 139-component-relation-OK.asn1.-EFprint-class-matrix ├── 139-component-relation-OK.asn1.-P ├── 14-resolver-OK.asn1 ├── 14-resolver-OK.asn1.-EF ├── 140-component-relation-OK.asn1 ├── 140-component-relation-OK.asn1.-EFprint-class-matrix ├── 140-component-relation-OK.asn1.-P ├── 141-component-relation-OK.asn1 ├── 141-component-relation-OK.asn1.-EFprint-class-matrix ├── 141-component-relation-OK.asn1.-P ├── 142-anonymous-types-deco-OK.asn1 ├── 142-anonymous-types-deco-OK.asn1.-Pfcompound-names ├── 143-inner-parameterization-OK.asn1 ├── 143-inner-parameterization-OK.asn1.-P ├── 144-ios-parameterization-OK.asn1 ├── 144-ios-parameterization-OK.asn1.-P ├── 145-empty-information-object-set-OK.asn1 ├── 146-ios-parameterization-per-OK.asn1 ├── 146-ios-parameterization-per-OK.asn1.-Pgen-PER ├── 147-inherit-per-constraints-OK.asn1 ├── 147-inherit-per-constraints-OK.asn1.-Pgen-OER ├── 147-inherit-per-constraints-OK.asn1.-Pgen-PER ├── 148-der-default-set-sequence-values-OK.asn1 ├── 149-with-components-SE.asn1 ├── 149-with-components-SE.asn1.-E ├── 15-resolver-SE.asn1 ├── 150-with-components-OK.asn1 ├── 150-with-components-OK.asn1.-EF ├── 151-per-b2110-OK.asn1 ├── 151-per-b2110-OK.asn1.-EFprint-constraints ├── 152-value-and-type-references-OK.asn1 ├── 152-value-and-type-references-OK.asn1.-EF ├── 153-single-value-constraint-OK.asn1 ├── 153-single-value-constraint-OK.asn1.-EF ├── 154-with-REAL-components-OK.asn1 ├── 154-with-REAL-components-OK.asn1.-Pfwide-types ├── 154-with-REAL-components-OK.asn1.-Pgen-OER ├── 154-with-REAL-components-OK.asn1.-Pgen-PER ├── 155-parameterization-more-than-two-level-OK.asn1 ├── 155-parameterization-more-than-two-level-OK.asn1.-Pgen-PER ├── 156-union-ios-OK.asn1 ├── 156-union-ios-OK.asn1.-Pgen-PER ├── 157-per-canonical-order-OK.asn1 ├── 157-per-canonical-order-OK.asn1.-Pgen-PER ├── 158-sequence-of-sequence-nested-OK.asn1 ├── 158-sequence-of-sequence-nested-OK.asn1.-Pfcompound-names ├── 16-constraint-OK.asn1 ├── 16-constraint-OK.asn1.-EF ├── 16-constraint-OK.asn1.-EFprint-constraints ├── 17-tags-OK.asn1 ├── 18-class-OK.asn1 ├── 18-class-OK.asn1.-EF ├── 19-param-OK.asn1 ├── 19-param-OK.asn1.-EF ├── 19-param-OK.asn1.-Pfwide-types ├── 20-constr-OK.asn1 ├── 20-constr-OK.asn1.-EF ├── 21-tags-OK.asn1 ├── 21-tags-OK.asn1.-EF ├── 22-tags-OK.asn1 ├── 22-tags-OK.asn1.-EF ├── 22-tags-OK.asn1.-Pfwide-types ├── 23-bits-OK.asn1 ├── 23-bits-OK.asn1.-EF ├── 24-sequence-OK.asn1 ├── 24-sequence-OK.asn1.-EF ├── 25-misc-OK.asn1 ├── 26-sequence-SE.asn1 ├── 27-set-SE.asn1 ├── 28-tags-SE.asn1 ├── 29-tags-OK.asn1 ├── 30-set-OK.asn1 ├── 30-set-OK.asn1.-Pfwide-types ├── 31-set-of-OK.asn1 ├── 31-set-of-OK.asn1.-EF ├── 31-set-of-OK.asn1.-Pfcompound-names ├── 31-set-of-OK.asn1.-Pfwide-types ├── 32-sequence-of-OK.asn1 ├── 32-sequence-of-OK.asn1.-EF ├── 32-sequence-of-OK.asn1.-P ├── 33-misc-OK.asn1 ├── 34-class-OK.asn1 ├── 34-class-OK.asn1.-EF ├── 34-class-OK.asn1.-EFprint-class-matrix ├── 35-set-choice-OK.asn1 ├── 36-indirect-choice-SE.asn1 ├── 37-indirect-choice-OK.asn1 ├── 37-indirect-choice-OK.asn1.-EF ├── 37-indirect-choice-OK.asn1.-Pfwide-types ├── 38-comments-OK.asn1 ├── 39-sequence-of-OK.asn1 ├── 39-sequence-of-OK.asn1.-Pfwide-types ├── 40-int-optional-SE.asn1 ├── 41-int-optional-OK.asn1 ├── 42-real-life-OK.asn1 ├── 42-real-life-OK.asn1.-EF ├── 42-real-life-OK.asn1.-PR ├── 43-recursion-OK.asn1 ├── 43-recursion-OK.asn1.-Pfwide-types ├── 44-choice-in-sequence-OK.asn1 ├── 44-choice-in-sequence-OK.asn1.-P ├── 45-undefined-type-SE.asn1 ├── 45-undefined-type-SE.asn1.-EFfknown-extern-type=KnownExt ├── 46-redefine-OK.asn1 ├── 46-redefine-OK.asn1.-PR ├── 47-set-ext-OK.asn1 ├── 47-set-ext-OK.asn1.-Pfwide-types ├── 48-real-life-OK.asn1 ├── 49-real-life-OK.asn1 ├── 49-real-life-OK.asn1.-E ├── 50-constraint-OK.asn1 ├── 50-constraint-OK.asn1.-EFprint-constraints ├── 50-constraint-OK.asn1.-Pfwide-types ├── 50-constraint-OK.asn1.-Pgen-PER ├── 51-constraint-SE.asn1 ├── 52-constraint-SE.asn1 ├── 53-constraint-SE.asn1 ├── 54-constraint-SE.asn1 ├── 55-components-of-OK.asn1 ├── 55-components-of-OK.asn1.-EF ├── 56-components-of-SE.asn1 ├── 57-components-of-OK.asn1 ├── 58-param-OK.asn1 ├── 58-param-OK.asn1.-EF ├── 59-choice-extended-OK.asn1 ├── 59-choice-extended-OK.asn1.-Pfwide-types ├── 60-any-OK.asn1 ├── 60-any-OK.asn1.-EF ├── 60-any-OK.asn1.-Pfwide-types ├── 61-any-1-SE.asn1 ├── 62-any-OK.asn1 ├── 62-any-OK.asn1.-EF ├── 63-any-2-SE.asn1 ├── 64-oid-constr-OK.asn1 ├── 65-multi-tag-OK.asn1 ├── 65-multi-tag-OK.asn1.-Pfnative-types ├── 65-multi-tag-OK.asn1.-Pfwide-types ├── 66-ref-simple-OK.asn1 ├── 66-ref-simple-OK.asn1.-Pfwide-types ├── 67-embedded-choice-OK.asn1 ├── 68-enum-default-OK.asn1 ├── 69-reserved-words-OK.asn1 ├── 69-reserved-words-OK.asn1.-Pfwide-types ├── 70-xer-test-OK.asn1 ├── 70-xer-test-OK.asn1.-EF ├── 70-xer-test-OK.asn1.-Pfwide-types ├── 71-duplicate-types-SE.asn1 ├── 72-same-names-OK.asn1 ├── 72-same-names-OK.asn1.-Pfwide-types ├── 73-circular-OK.asn1 ├── 73-circular-OK.asn1.-Pfwide-types ├── 74-int-enum-constraints-OK.asn1 ├── 74-int-enum-constraints-OK.asn1.-EFprint-constraints ├── 75-duplicate-modules-SE.asn1 ├── 76-duplicate-modules-SW.asn1 ├── 77-str-default-OK.asn1 ├── 78-str-default-SE.asn1 ├── 79-constrained-by-OK.asn1 ├── 79-constrained-by-OK.asn1.-EF ├── 80-chardefs-OK.asn1 ├── 81-type-default-OK.asn1 ├── 82-with-comps-OK.asn1 ├── 82-with-comps-OK.asn1.-EF ├── 83-with-comps-OK.asn1 ├── 84-param-tags-OK.asn1 ├── 84-param-tags-OK.asn1.-EF ├── 84-param-tags-OK.asn1.-Pfwide-types ├── 85-comments-OK.asn1 ├── 86-atags-OK.asn1 ├── 86-atags-OK.asn1.-EF ├── 87-old-syntax-OK.asn1 ├── 88-integer-enum-OK.asn1 ├── 88-integer-enum-OK.asn1.-Pfwide-types ├── 89-bit-string-enum-OK.asn1 ├── 89-bit-string-enum-OK.asn1.-Pfcompound-names ├── 89-bit-string-enum-OK.asn1.-Pfwide-types ├── 90-cond-int-type-OK.asn1 ├── 90-cond-int-type-OK.asn1.-EFprint-constraints ├── 90-cond-int-type-OK.asn1.-P ├── 90-cond-int-type-OK.asn1.-Pfwide-types ├── 90-cond-int-type-OK.asn1.-Pgen-PER ├── 91-cond-int-blessSize-OK.asn1 ├── 91-cond-int-blessSize-OK.asn1.-Pfbless-SIZE ├── 92-circular-loops-OK.asn1 ├── 92-circular-loops-OK.asn1.-Pfindirect-choice ├── 92-circular-loops-OK.asn1.-Pfwide-types ├── 93-asn1c-controls-OK.asn1 ├── 93-asn1c-controls-OK.asn1.-EF ├── 93-asn1c-controls-OK.asn1.-Pfwide-types ├── 94-set-optionals-OK.asn1 ├── 94-set-optionals-OK.asn1.-P ├── 95-choice-per-order-OK.asn1 ├── 95-choice-per-order-OK.asn1.-Pfwide-types ├── 95-choice-per-order-OK.asn1.-Pgen-PER ├── 96-type-identifier-OK.asn1 ├── 97-type-identifier-SW.asn1 ├── 97-type-identifier-SW.asn1.-EF ├── 98-attribute-class-OK.asn1 ├── 98-attribute-class-OK.asn1.-EF ├── 98-attribute-class-OK.asn1.-EFprint-class-matrix ├── 98-attribute-class-OK.asn1.-P ├── 99-class-sample-OK.asn1 ├── 99-class-sample-OK.asn1.-EFprint-class-matrix ├── Makefile.am ├── README ├── check-parsing-log2diff.pl └── check-parsing.sh ├── tests-asn1c-smoke ├── Makefile.am ├── README └── check-asn1c-smoke.sh ├── tests-c-compiler ├── Makefile.am ├── README ├── check-assembly.sh ├── check-src │ ├── Makefile.am │ ├── check-03.-fwide-types.c │ ├── check-119.-fwide-types.-gen-PER.c │ ├── check-119.-gen-PER.c │ ├── check-126.-gen-PER.c │ ├── check-127.-gen-PER.c │ ├── check-131.-gen-PER.c │ ├── check-132.-gen-PER.c │ ├── check-133.-gen-PER.c │ ├── check-135.-gen-OER.c │ ├── check-137.-gen-OER.c │ ├── check-148.c │ ├── check-158.-fcompound-names.c │ ├── check-19.c │ ├── check-22.-fwide-types.c │ ├── check-24.-fwide-types.c │ ├── check-25.-fwide-types.c │ ├── check-30.-fwide-types.c │ ├── check-31.-fwide-types.c │ ├── check-32.c │ ├── check-33.c │ ├── check-35.c │ ├── check-39.c │ ├── check-41.-fwide-types.c │ ├── check-41.c │ ├── check-42.-fwide-types.cc │ ├── check-42.c │ ├── check-43.c │ ├── check-44.c │ ├── check-46.c │ ├── check-48.c │ ├── check-50.c │ ├── check-59.c │ ├── check-60.c │ ├── check-62.c │ ├── check-65.c │ ├── check-70.-fwide-types.c │ ├── check-70.c │ ├── check-72.-fcompound-names.c │ ├── check-73.c │ ├── check-92.-findirect-choice.c │ ├── check-92.c │ ├── check64-134.-gen-PER.c │ └── check64-136.-gen-OER.c ├── data-119 │ ├── README │ ├── data-119-01.in │ ├── data-119-02.in │ ├── data-119-03.in │ ├── data-119-04-P.in │ ├── data-119-05.in │ ├── data-119-06-P.in │ ├── data-119-07-P.in │ ├── data-119-08.in │ ├── data-119-09.in │ ├── data-119-10.in │ ├── data-119-11-P.in │ ├── data-119-12-P.in │ ├── data-119-13-P.in │ ├── data-119-14-P.in │ ├── data-119-15.in │ ├── data-119-16.in │ ├── data-119-17.in │ ├── data-119-18.in │ ├── data-119-19.in │ ├── data-119-20-P.in │ ├── data-119-21-P.in │ ├── data-119-22-P.in │ ├── data-119-23-P.in │ ├── data-119-24-P.in │ └── data-119-25-P.in ├── data-126 │ ├── README │ ├── data-126-01.in │ ├── data-126-01.out │ ├── data-126-02-P.in │ ├── data-126-02-P.out │ ├── data-126-03-P.in │ ├── data-126-03-P.out │ ├── data-126-04-P.in │ ├── data-126-04-P.out │ ├── data-126-05-P.in │ ├── data-126-05-P.out │ ├── data-126-06-P.in │ ├── data-126-06-P.out │ ├── data-126-07-P.in │ ├── data-126-07-P.out │ ├── data-126-08-P.in │ ├── data-126-08-P.out │ ├── data-126-09-C.in │ ├── data-126-09-C.out │ ├── data-126-10-C.in │ ├── data-126-10-C.out │ ├── data-126-11-C.in │ ├── data-126-11-C.out │ ├── data-126-12.in │ ├── data-126-12.out │ ├── data-126-13.in │ ├── data-126-13.out │ ├── data-126-14.in │ ├── data-126-14.out │ ├── data-126-15.in │ ├── data-126-15.out │ ├── data-126-16.in │ ├── data-126-16.out │ ├── data-126-17.in │ ├── data-126-17.out │ ├── data-126-18-X.in │ ├── data-126-18-X.out │ ├── data-126-19.in │ ├── data-126-19.out │ ├── data-126-20.in │ ├── data-126-20.out │ ├── data-126-21.in │ └── data-126-21.out ├── data-62 │ ├── Makefile │ ├── README │ ├── data-62-01.ber │ ├── data-62-01.xbr │ ├── data-62-02-B.ber │ ├── data-62-02-B.xbr │ ├── data-62-03-B.ber │ ├── data-62-03-B.xbr │ ├── data-62-04-B.ber │ ├── data-62-04-B.xbr │ ├── data-62-05-B.ber │ ├── data-62-05-B.xbr │ ├── data-62-06-B.ber │ ├── data-62-06-B.xbr │ ├── data-62-07-B.ber │ ├── data-62-07-B.xbr │ ├── data-62-08-L.ber │ ├── data-62-08-L.xbr │ ├── data-62-09-L.ber │ ├── data-62-09-L.xbr │ ├── data-62-10.ber │ ├── data-62-10.xbr │ ├── data-62-11.ber │ ├── data-62-11.xbr │ ├── data-62-12-B.ber │ ├── data-62-12-B.xbr │ ├── data-62-13-B.ber │ ├── data-62-13-B.xbr │ ├── data-62-14.ber │ ├── data-62-14.xbr │ ├── data-62-15-B.ber │ ├── data-62-15-B.xbr │ ├── data-62-16.ber │ ├── data-62-16.xbr │ ├── data-62-17-B.ber │ ├── data-62-17-B.xbr │ ├── data-62-18-B.ber │ ├── data-62-18-B.xbr │ ├── data-62-19-B.ber │ ├── data-62-19-B.xbr │ ├── data-62-20.ber │ ├── data-62-20.xbr │ ├── data-62-21-B.ber │ ├── data-62-21-B.xbr │ ├── data-62-22.ber │ ├── data-62-22.xbr │ ├── data-62-23-B.ber │ ├── data-62-23-B.xbr │ ├── data-62-24-L.ber │ ├── data-62-24-L.xbr │ ├── data-62-25.ber │ ├── data-62-25.xbr │ ├── data-62-26-B.ber │ ├── data-62-26-B.xbr │ ├── data-62-27.ber │ ├── data-62-27.xbr │ ├── data-62-28-D.ber │ ├── data-62-28-D.xbr │ ├── data-62-29-L.ber │ ├── data-62-29-L.xbr │ ├── data-62-30-L.ber │ ├── data-62-30-L.xbr │ ├── data-62-31-D.ber │ ├── data-62-31-D.xbr │ ├── data-62-32.ber │ └── data-62-32.xbr └── data-70 │ ├── README │ ├── data-70-01.in │ ├── data-70-02.in │ ├── data-70-03.in │ ├── data-70-04-B.in │ ├── data-70-05-B.in │ ├── data-70-06-B.in │ ├── data-70-07-D.in │ ├── data-70-08-B.in │ ├── data-70-09-D.in │ ├── data-70-10.in │ ├── data-70-11.in │ ├── data-70-12.in │ ├── data-70-13-D.in │ ├── data-70-14-D.in │ ├── data-70-15.in │ ├── data-70-16-B.in │ ├── data-70-17-D.in │ ├── data-70-18.in │ ├── data-70-19.in │ ├── data-70-20-D.in │ ├── data-70-21-D.in │ ├── data-70-22-D.in │ ├── data-70-23-D.in │ ├── data-70-24-D.in │ ├── data-70-25.in │ ├── data-70-26-B.in │ ├── data-70-27.in │ ├── data-70-28.in │ ├── data-70-29-D.in │ ├── data-70-30-B.in │ ├── data-70-31-B.in │ ├── data-70-32.in │ ├── data-70-33.in │ ├── data-70-34-B.in │ ├── data-70-35-B.in │ ├── data-70-36.in │ ├── data-70-37-D.in │ ├── data-70-38-B.in │ ├── data-70-39.in │ ├── data-70-40-D.in │ ├── data-70-41-D.in │ ├── data-70-42-E.in │ ├── data-70-43-E.in │ ├── data-70-44-X.in │ ├── data-70-45-X.in │ ├── data-70-46-X.in │ ├── data-70-47.in │ ├── data-70-48.in │ ├── data-70-49.in │ ├── data-70-50.in │ ├── data-70-51.in │ ├── data-70-52-D.in │ ├── data-70-53.in │ ├── data-70-54-D.in │ ├── data-70-55.in │ ├── data-70-56.in │ ├── data-70-57-D.in │ ├── data-70-58-D.in │ ├── data-70-59-D.in │ ├── data-70-60-D.in │ ├── data-70-61-D.in │ └── data-70-62-D.in ├── tests-randomized ├── Makefile.am ├── bundles │ ├── 00-NULL-bundle.txt │ ├── 01-BOOLEAN-bundle.txt │ ├── 02-INTEGER-bundle.txt │ ├── 03-ENUMERATED-bundle.txt │ ├── 04-REAL-bundle.txt │ ├── 05-BIT-STRING-bundle.txt │ ├── 06-OCTET-STRING-bundle.txt │ ├── 07-VisibleString-bundle.txt │ ├── 08-OBJECT-IDENTIFIER-bundle.txt │ ├── 09-RELATIVE-OID-bundle.txt │ ├── 10-UTF8String-bundle.txt │ ├── 11-BMPString-bundle.txt │ ├── 12-UniversalString-bundle.txt │ ├── 13-UTCTime-bundle.txt │ ├── 14-GeneralizedTime-bundle.txt │ ├── 15-CHOICE-bundle.txt │ ├── 16-SEQUENCE-bundle.txt │ ├── 17-SEQUENCE-OF-bundle.txt │ ├── 19-SET-OF-bundle.txt │ └── README ├── check-bundles.sh ├── random-test-driver.c └── test-param-helper.c └── tests-skeletons ├── Makefile.am ├── check-GeneralizedTime.c ├── check-INTEGER.c ├── check-OCTET_STRING.c ├── check-OER-INTEGER.c ├── check-OER-NativeEnumerated.c ├── check-OER-support.c ├── check-OIDs.c ├── check-PER-INTEGER.c ├── check-PER-UniversalString.c ├── check-PER-support.c ├── check-REAL.c ├── check-UTCTime.c ├── check-UTF8String.c ├── check-XER.c ├── check-ber_tlv_tag.c ├── check-bits.c ├── check-length.c └── disable-leak-check-m32.sh /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/AUTHORS -------------------------------------------------------------------------------- /BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/BUGS -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/ChangeLog -------------------------------------------------------------------------------- /FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/FAQ -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/README.md -------------------------------------------------------------------------------- /REQUIREMENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/REQUIREMENTS.md -------------------------------------------------------------------------------- /asn1-tools/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/asn1-tools/Makefile.am -------------------------------------------------------------------------------- /asn1-tools/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/asn1-tools/README -------------------------------------------------------------------------------- /asn1-tools/check-xxber.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/asn1-tools/check-xxber.sh -------------------------------------------------------------------------------- /asn1-tools/enber/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/asn1-tools/enber/Makefile.am -------------------------------------------------------------------------------- /asn1-tools/enber/enber.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/asn1-tools/enber/enber.c -------------------------------------------------------------------------------- /asn1-tools/unber/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/asn1-tools/unber/Makefile.am -------------------------------------------------------------------------------- /asn1-tools/unber/check_unber.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/asn1-tools/unber/check_unber.c -------------------------------------------------------------------------------- /asn1-tools/unber/check_unber.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/asn1-tools/unber/check_unber.sh -------------------------------------------------------------------------------- /asn1-tools/unber/libasn1_unber_tool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/asn1-tools/unber/libasn1_unber_tool.c -------------------------------------------------------------------------------- /asn1-tools/unber/libasn1_unber_tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/asn1-tools/unber/libasn1_unber_tool.h -------------------------------------------------------------------------------- /asn1-tools/unber/unber.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/asn1-tools/unber/unber.c -------------------------------------------------------------------------------- /asn1c/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/asn1c/Makefile.am -------------------------------------------------------------------------------- /asn1c/README: -------------------------------------------------------------------------------- 1 | asn1c - The ASN.1 Compiler 2 | -------------------------------------------------------------------------------- /asn1c/asn1c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/asn1c/asn1c.c -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/configure.ac -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/asn1c-quick.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/doc/asn1c-quick.pdf -------------------------------------------------------------------------------- /doc/asn1c-usage.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/doc/asn1c-usage.pdf -------------------------------------------------------------------------------- /doc/docsrc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/doc/docsrc/Makefile.am -------------------------------------------------------------------------------- /doc/docsrc/asn1c-usage.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/doc/docsrc/asn1c-usage.tex -------------------------------------------------------------------------------- /doc/docsrc/asn_dec_rval.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/doc/docsrc/asn_dec_rval.inc -------------------------------------------------------------------------------- /doc/docsrc/asn_enc_rval.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/doc/docsrc/asn_enc_rval.inc -------------------------------------------------------------------------------- /doc/man/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/doc/man/Makefile.am -------------------------------------------------------------------------------- /doc/man/asn1c.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/doc/man/asn1c.1 -------------------------------------------------------------------------------- /doc/man/asn1c.man.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/doc/man/asn1c.man.md -------------------------------------------------------------------------------- /doc/man/enber.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/doc/man/enber.1 -------------------------------------------------------------------------------- /doc/man/enber.man.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/doc/man/enber.man.md -------------------------------------------------------------------------------- /doc/man/unber.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/doc/man/unber.1 -------------------------------------------------------------------------------- /doc/man/unber.man.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/doc/man/unber.man.md -------------------------------------------------------------------------------- /examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/Makefile.am -------------------------------------------------------------------------------- /examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/README -------------------------------------------------------------------------------- /examples/crfc2asn1.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/crfc2asn1.pl -------------------------------------------------------------------------------- /examples/rfc3280.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/rfc3280.txt -------------------------------------------------------------------------------- /examples/rfc3525.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/rfc3525.txt -------------------------------------------------------------------------------- /examples/rfc4511.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/rfc4511.txt -------------------------------------------------------------------------------- /examples/rrc-7.1.0.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/rrc-7.1.0.asn1 -------------------------------------------------------------------------------- /examples/sample.makefile.regen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/sample.makefile.regen -------------------------------------------------------------------------------- /examples/sample.source.1609.2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/sample.source.1609.2/Makefile -------------------------------------------------------------------------------- /examples/sample.source.1609.2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/sample.source.1609.2/README -------------------------------------------------------------------------------- /examples/sample.source.1609.2/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/sample.source.1609.2/config.h -------------------------------------------------------------------------------- /examples/sample.source.1609.2/sample-Certificate-1.coer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/sample.source.1609.2/sample-Certificate-1.coer -------------------------------------------------------------------------------- /examples/sample.source.1609.2/sample-Certificate-1.xer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/sample.source.1609.2/sample-Certificate-1.xer -------------------------------------------------------------------------------- /examples/sample.source.1609.2/sample-Certificate-2.coer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/sample.source.1609.2/sample-Certificate-2.coer -------------------------------------------------------------------------------- /examples/sample.source.1609.2/sample-Certificate-2.xer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/sample.source.1609.2/sample-Certificate-2.xer -------------------------------------------------------------------------------- /examples/sample.source.J2735/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/sample.source.J2735/Makefile -------------------------------------------------------------------------------- /examples/sample.source.J2735/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/sample.source.J2735/README -------------------------------------------------------------------------------- /examples/sample.source.J2735/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/sample.source.J2735/config.h -------------------------------------------------------------------------------- /examples/sample.source.J2735/sample-MessageFrame-1.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/sample.source.J2735/sample-MessageFrame-1.der -------------------------------------------------------------------------------- /examples/sample.source.J2735/sample-MessageFrame-1.per: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/sample.source.J2735/sample-MessageFrame-1.per -------------------------------------------------------------------------------- /examples/sample.source.J2735/sample-MessageFrame-1.xer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/sample.source.J2735/sample-MessageFrame-1.xer -------------------------------------------------------------------------------- /examples/sample.source.LDAP3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/sample.source.LDAP3/Makefile -------------------------------------------------------------------------------- /examples/sample.source.LDAP3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/sample.source.LDAP3/README -------------------------------------------------------------------------------- /examples/sample.source.LDAP3/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/sample.source.LDAP3/config.h -------------------------------------------------------------------------------- /examples/sample.source.LDAP3/sample-LDAPMessage-1.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/sample.source.LDAP3/sample-LDAPMessage-1.ber -------------------------------------------------------------------------------- /examples/sample.source.LTE-RRC/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/sample.source.LTE-RRC/Makefile -------------------------------------------------------------------------------- /examples/sample.source.LTE-RRC/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/sample.source.LTE-RRC/README -------------------------------------------------------------------------------- /examples/sample.source.LTE-RRC/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/sample.source.LTE-RRC/config.h -------------------------------------------------------------------------------- /examples/sample.source.MEGACO/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/sample.source.MEGACO/Makefile -------------------------------------------------------------------------------- /examples/sample.source.MEGACO/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/sample.source.MEGACO/README -------------------------------------------------------------------------------- /examples/sample.source.MEGACO/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/sample.source.MEGACO/config.h -------------------------------------------------------------------------------- /examples/sample.source.MHEG5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/sample.source.MHEG5/Makefile -------------------------------------------------------------------------------- /examples/sample.source.MHEG5/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/sample.source.MHEG5/README -------------------------------------------------------------------------------- /examples/sample.source.MHEG5/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/sample.source.MHEG5/config.h -------------------------------------------------------------------------------- /examples/sample.source.PKIX1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/sample.source.PKIX1/Makefile -------------------------------------------------------------------------------- /examples/sample.source.PKIX1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/sample.source.PKIX1/README -------------------------------------------------------------------------------- /examples/sample.source.PKIX1/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/sample.source.PKIX1/config.h -------------------------------------------------------------------------------- /examples/sample.source.PKIX1/sample-Certificate-1.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/sample.source.PKIX1/sample-Certificate-1.der -------------------------------------------------------------------------------- /examples/sample.source.RRC/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/sample.source.RRC/Makefile -------------------------------------------------------------------------------- /examples/sample.source.RRC/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/sample.source.RRC/README -------------------------------------------------------------------------------- /examples/sample.source.RRC/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/sample.source.RRC/config.h -------------------------------------------------------------------------------- /examples/sample.source.RRC/sample-BCCH-BCH-Message-2.per: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/sample.source.RRC/sample-BCCH-BCH-Message-2.per -------------------------------------------------------------------------------- /examples/sample.source.RRC/sample-DL-DCCH-Message-1.per: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/sample.source.RRC/sample-DL-DCCH-Message-1.per -------------------------------------------------------------------------------- /examples/sample.source.TAP3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/sample.source.TAP3/Makefile -------------------------------------------------------------------------------- /examples/sample.source.TAP3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/sample.source.TAP3/README -------------------------------------------------------------------------------- /examples/sample.source.TAP3/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/sample.source.TAP3/config.h -------------------------------------------------------------------------------- /examples/sample.source.TAP3/sample-DataInterChange-1.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/sample.source.TAP3/sample-DataInterChange-1.ber -------------------------------------------------------------------------------- /examples/sample.source.ULP/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/sample.source.ULP/Makefile -------------------------------------------------------------------------------- /examples/sample.source.ULP/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/sample.source.ULP/README -------------------------------------------------------------------------------- /examples/sample.source.ULP/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/sample.source.ULP/config.h -------------------------------------------------------------------------------- /examples/sample.source.ULP/sample-ULP-PDU-1.per: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/sample.source.ULP/sample-ULP-PDU-1.per -------------------------------------------------------------------------------- /examples/sample.source.ULP/sample-ULP-PDU-1.xer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/sample.source.ULP/sample-ULP-PDU-1.xer -------------------------------------------------------------------------------- /examples/sample.source.ULP/sample-ULP-PDU-2.per: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/examples/sample.source.ULP/sample-ULP-PDU-2.per -------------------------------------------------------------------------------- /libasn1common/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1common/Makefile.am -------------------------------------------------------------------------------- /libasn1common/asn1_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1common/asn1_buffer.c -------------------------------------------------------------------------------- /libasn1common/asn1_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1common/asn1_buffer.h -------------------------------------------------------------------------------- /libasn1common/asn1_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1common/asn1_common.h -------------------------------------------------------------------------------- /libasn1common/asn1_namespace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1common/asn1_namespace.c -------------------------------------------------------------------------------- /libasn1common/asn1_namespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1common/asn1_namespace.h -------------------------------------------------------------------------------- /libasn1common/asn1_ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1common/asn1_ref.c -------------------------------------------------------------------------------- /libasn1common/asn1_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1common/asn1_ref.h -------------------------------------------------------------------------------- /libasn1common/genhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1common/genhash.c -------------------------------------------------------------------------------- /libasn1common/genhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1common/genhash.h -------------------------------------------------------------------------------- /libasn1compiler/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1compiler/Makefile.am -------------------------------------------------------------------------------- /libasn1compiler/asn1c_C.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1compiler/asn1c_C.c -------------------------------------------------------------------------------- /libasn1compiler/asn1c_C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1compiler/asn1c_C.h -------------------------------------------------------------------------------- /libasn1compiler/asn1c_compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1compiler/asn1c_compat.c -------------------------------------------------------------------------------- /libasn1compiler/asn1c_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1compiler/asn1c_compat.h -------------------------------------------------------------------------------- /libasn1compiler/asn1c_constraint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1compiler/asn1c_constraint.c -------------------------------------------------------------------------------- /libasn1compiler/asn1c_constraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1compiler/asn1c_constraint.h -------------------------------------------------------------------------------- /libasn1compiler/asn1c_fdeps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1compiler/asn1c_fdeps.c -------------------------------------------------------------------------------- /libasn1compiler/asn1c_fdeps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1compiler/asn1c_fdeps.h -------------------------------------------------------------------------------- /libasn1compiler/asn1c_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1compiler/asn1c_internal.h -------------------------------------------------------------------------------- /libasn1compiler/asn1c_ioc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1compiler/asn1c_ioc.c -------------------------------------------------------------------------------- /libasn1compiler/asn1c_ioc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1compiler/asn1c_ioc.h -------------------------------------------------------------------------------- /libasn1compiler/asn1c_lang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1compiler/asn1c_lang.c -------------------------------------------------------------------------------- /libasn1compiler/asn1c_lang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1compiler/asn1c_lang.h -------------------------------------------------------------------------------- /libasn1compiler/asn1c_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1compiler/asn1c_misc.c -------------------------------------------------------------------------------- /libasn1compiler/asn1c_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1compiler/asn1c_misc.h -------------------------------------------------------------------------------- /libasn1compiler/asn1c_naming.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1compiler/asn1c_naming.c -------------------------------------------------------------------------------- /libasn1compiler/asn1c_naming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1compiler/asn1c_naming.h -------------------------------------------------------------------------------- /libasn1compiler/asn1c_out.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1compiler/asn1c_out.c -------------------------------------------------------------------------------- /libasn1compiler/asn1c_out.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1compiler/asn1c_out.h -------------------------------------------------------------------------------- /libasn1compiler/asn1c_save.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1compiler/asn1c_save.c -------------------------------------------------------------------------------- /libasn1compiler/asn1c_save.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1compiler/asn1c_save.h -------------------------------------------------------------------------------- /libasn1compiler/asn1compiler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1compiler/asn1compiler.c -------------------------------------------------------------------------------- /libasn1compiler/asn1compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1compiler/asn1compiler.h -------------------------------------------------------------------------------- /libasn1compiler/check_compiler.c: -------------------------------------------------------------------------------- 1 | #include "asn1compiler.h" 2 | 3 | int 4 | main(int ac, char **av) { 5 | return 0; 6 | } 7 | 8 | -------------------------------------------------------------------------------- /libasn1fix/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1fix/Makefile.am -------------------------------------------------------------------------------- /libasn1fix/asn1fix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1fix/asn1fix.c -------------------------------------------------------------------------------- /libasn1fix/asn1fix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1fix/asn1fix.h -------------------------------------------------------------------------------- /libasn1fix/asn1fix_bitstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1fix/asn1fix_bitstring.c -------------------------------------------------------------------------------- /libasn1fix/asn1fix_bitstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1fix/asn1fix_bitstring.h -------------------------------------------------------------------------------- /libasn1fix/asn1fix_class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1fix/asn1fix_class.c -------------------------------------------------------------------------------- /libasn1fix/asn1fix_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1fix/asn1fix_class.h -------------------------------------------------------------------------------- /libasn1fix/asn1fix_compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1fix/asn1fix_compat.c -------------------------------------------------------------------------------- /libasn1fix/asn1fix_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1fix/asn1fix_compat.h -------------------------------------------------------------------------------- /libasn1fix/asn1fix_constr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1fix/asn1fix_constr.c -------------------------------------------------------------------------------- /libasn1fix/asn1fix_constr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1fix/asn1fix_constr.h -------------------------------------------------------------------------------- /libasn1fix/asn1fix_constraint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1fix/asn1fix_constraint.c -------------------------------------------------------------------------------- /libasn1fix/asn1fix_constraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1fix/asn1fix_constraint.h -------------------------------------------------------------------------------- /libasn1fix/asn1fix_constraint_compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1fix/asn1fix_constraint_compat.c -------------------------------------------------------------------------------- /libasn1fix/asn1fix_crange.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1fix/asn1fix_crange.c -------------------------------------------------------------------------------- /libasn1fix/asn1fix_crange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1fix/asn1fix_crange.h -------------------------------------------------------------------------------- /libasn1fix/asn1fix_cstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1fix/asn1fix_cstring.c -------------------------------------------------------------------------------- /libasn1fix/asn1fix_cstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1fix/asn1fix_cstring.h -------------------------------------------------------------------------------- /libasn1fix/asn1fix_cws.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1fix/asn1fix_cws.c -------------------------------------------------------------------------------- /libasn1fix/asn1fix_cws.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1fix/asn1fix_cws.h -------------------------------------------------------------------------------- /libasn1fix/asn1fix_dereft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1fix/asn1fix_dereft.c -------------------------------------------------------------------------------- /libasn1fix/asn1fix_dereft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1fix/asn1fix_dereft.h -------------------------------------------------------------------------------- /libasn1fix/asn1fix_derefv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1fix/asn1fix_derefv.c -------------------------------------------------------------------------------- /libasn1fix/asn1fix_derefv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1fix/asn1fix_derefv.h -------------------------------------------------------------------------------- /libasn1fix/asn1fix_enum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1fix/asn1fix_enum.c -------------------------------------------------------------------------------- /libasn1fix/asn1fix_enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1fix/asn1fix_enum.h -------------------------------------------------------------------------------- /libasn1fix/asn1fix_export.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1fix/asn1fix_export.c -------------------------------------------------------------------------------- /libasn1fix/asn1fix_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1fix/asn1fix_export.h -------------------------------------------------------------------------------- /libasn1fix/asn1fix_integer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1fix/asn1fix_integer.c -------------------------------------------------------------------------------- /libasn1fix/asn1fix_integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1fix/asn1fix_integer.h -------------------------------------------------------------------------------- /libasn1fix/asn1fix_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1fix/asn1fix_internal.h -------------------------------------------------------------------------------- /libasn1fix/asn1fix_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1fix/asn1fix_misc.c -------------------------------------------------------------------------------- /libasn1fix/asn1fix_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1fix/asn1fix_misc.h -------------------------------------------------------------------------------- /libasn1fix/asn1fix_param.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1fix/asn1fix_param.c -------------------------------------------------------------------------------- /libasn1fix/asn1fix_param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1fix/asn1fix_param.h -------------------------------------------------------------------------------- /libasn1fix/asn1fix_retrieve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1fix/asn1fix_retrieve.c -------------------------------------------------------------------------------- /libasn1fix/asn1fix_retrieve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1fix/asn1fix_retrieve.h -------------------------------------------------------------------------------- /libasn1fix/asn1fix_tags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1fix/asn1fix_tags.c -------------------------------------------------------------------------------- /libasn1fix/asn1fix_tags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1fix/asn1fix_tags.h -------------------------------------------------------------------------------- /libasn1fix/asn1fix_value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1fix/asn1fix_value.c -------------------------------------------------------------------------------- /libasn1fix/asn1fix_value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1fix/asn1fix_value.h -------------------------------------------------------------------------------- /libasn1fix/check_fixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1fix/check_fixer.c -------------------------------------------------------------------------------- /libasn1parser/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1parser/Makefile.am -------------------------------------------------------------------------------- /libasn1parser/asn1p_class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1parser/asn1p_class.c -------------------------------------------------------------------------------- /libasn1parser/asn1p_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1parser/asn1p_class.h -------------------------------------------------------------------------------- /libasn1parser/asn1p_constr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1parser/asn1p_constr.c -------------------------------------------------------------------------------- /libasn1parser/asn1p_constr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1parser/asn1p_constr.h -------------------------------------------------------------------------------- /libasn1parser/asn1p_expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1parser/asn1p_expr.c -------------------------------------------------------------------------------- /libasn1parser/asn1p_expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1parser/asn1p_expr.h -------------------------------------------------------------------------------- /libasn1parser/asn1p_expr2uclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1parser/asn1p_expr2uclass.h -------------------------------------------------------------------------------- /libasn1parser/asn1p_expr_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1parser/asn1p_expr_str.h -------------------------------------------------------------------------------- /libasn1parser/asn1p_integer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1parser/asn1p_integer.c -------------------------------------------------------------------------------- /libasn1parser/asn1p_integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1parser/asn1p_integer.h -------------------------------------------------------------------------------- /libasn1parser/asn1p_l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1parser/asn1p_l.c -------------------------------------------------------------------------------- /libasn1parser/asn1p_l.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1parser/asn1p_l.l -------------------------------------------------------------------------------- /libasn1parser/asn1p_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1parser/asn1p_list.h -------------------------------------------------------------------------------- /libasn1parser/asn1p_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1parser/asn1p_module.c -------------------------------------------------------------------------------- /libasn1parser/asn1p_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1parser/asn1p_module.h -------------------------------------------------------------------------------- /libasn1parser/asn1p_oid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1parser/asn1p_oid.c -------------------------------------------------------------------------------- /libasn1parser/asn1p_oid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1parser/asn1p_oid.h -------------------------------------------------------------------------------- /libasn1parser/asn1p_param.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1parser/asn1p_param.c -------------------------------------------------------------------------------- /libasn1parser/asn1p_param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1parser/asn1p_param.h -------------------------------------------------------------------------------- /libasn1parser/asn1p_value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1parser/asn1p_value.c -------------------------------------------------------------------------------- /libasn1parser/asn1p_value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1parser/asn1p_value.h -------------------------------------------------------------------------------- /libasn1parser/asn1p_xports.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1parser/asn1p_xports.c -------------------------------------------------------------------------------- /libasn1parser/asn1p_xports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1parser/asn1p_xports.h -------------------------------------------------------------------------------- /libasn1parser/asn1p_y.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1parser/asn1p_y.c -------------------------------------------------------------------------------- /libasn1parser/asn1p_y.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1parser/asn1p_y.h -------------------------------------------------------------------------------- /libasn1parser/asn1p_y.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1parser/asn1p_y.y -------------------------------------------------------------------------------- /libasn1parser/asn1parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1parser/asn1parser.c -------------------------------------------------------------------------------- /libasn1parser/asn1parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1parser/asn1parser.h -------------------------------------------------------------------------------- /libasn1parser/check_asn1p_integer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1parser/check_asn1p_integer.c -------------------------------------------------------------------------------- /libasn1parser/expr-h.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1parser/expr-h.pl -------------------------------------------------------------------------------- /libasn1print/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1print/Makefile.am -------------------------------------------------------------------------------- /libasn1print/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1print/README -------------------------------------------------------------------------------- /libasn1print/asn1print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1print/asn1print.c -------------------------------------------------------------------------------- /libasn1print/asn1print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/libasn1print/asn1print.h -------------------------------------------------------------------------------- /m4/ax_check_compile_and_link_flag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/m4/ax_check_compile_and_link_flag.m4 -------------------------------------------------------------------------------- /m4/ax_check_compile_flag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/m4/ax_check_compile_flag.m4 -------------------------------------------------------------------------------- /m4/ax_code_coverage.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/m4/ax_code_coverage.m4 -------------------------------------------------------------------------------- /skeletons/ANY.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/ANY.c -------------------------------------------------------------------------------- /skeletons/ANY.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/ANY.h -------------------------------------------------------------------------------- /skeletons/BIT_STRING.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/BIT_STRING.c -------------------------------------------------------------------------------- /skeletons/BIT_STRING.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/BIT_STRING.h -------------------------------------------------------------------------------- /skeletons/BIT_STRING_oer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/BIT_STRING_oer.c -------------------------------------------------------------------------------- /skeletons/BMPString.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/BMPString.c -------------------------------------------------------------------------------- /skeletons/BMPString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/BMPString.h -------------------------------------------------------------------------------- /skeletons/BOOLEAN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/BOOLEAN.c -------------------------------------------------------------------------------- /skeletons/BOOLEAN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/BOOLEAN.h -------------------------------------------------------------------------------- /skeletons/ENUMERATED.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/ENUMERATED.c -------------------------------------------------------------------------------- /skeletons/ENUMERATED.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/ENUMERATED.h -------------------------------------------------------------------------------- /skeletons/GeneralString.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/GeneralString.c -------------------------------------------------------------------------------- /skeletons/GeneralString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/GeneralString.h -------------------------------------------------------------------------------- /skeletons/GeneralizedTime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/GeneralizedTime.c -------------------------------------------------------------------------------- /skeletons/GeneralizedTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/GeneralizedTime.h -------------------------------------------------------------------------------- /skeletons/GraphicString.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/GraphicString.c -------------------------------------------------------------------------------- /skeletons/GraphicString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/GraphicString.h -------------------------------------------------------------------------------- /skeletons/IA5String.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/IA5String.c -------------------------------------------------------------------------------- /skeletons/IA5String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/IA5String.h -------------------------------------------------------------------------------- /skeletons/INTEGER.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/INTEGER.c -------------------------------------------------------------------------------- /skeletons/INTEGER.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/INTEGER.h -------------------------------------------------------------------------------- /skeletons/INTEGER_oer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/INTEGER_oer.c -------------------------------------------------------------------------------- /skeletons/ISO646String.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/ISO646String.c -------------------------------------------------------------------------------- /skeletons/ISO646String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/ISO646String.h -------------------------------------------------------------------------------- /skeletons/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/Makefile.am -------------------------------------------------------------------------------- /skeletons/NULL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/NULL.c -------------------------------------------------------------------------------- /skeletons/NULL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/NULL.h -------------------------------------------------------------------------------- /skeletons/NativeEnumerated.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/NativeEnumerated.c -------------------------------------------------------------------------------- /skeletons/NativeEnumerated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/NativeEnumerated.h -------------------------------------------------------------------------------- /skeletons/NativeEnumerated_oer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/NativeEnumerated_oer.c -------------------------------------------------------------------------------- /skeletons/NativeInteger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/NativeInteger.c -------------------------------------------------------------------------------- /skeletons/NativeInteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/NativeInteger.h -------------------------------------------------------------------------------- /skeletons/NativeInteger_oer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/NativeInteger_oer.c -------------------------------------------------------------------------------- /skeletons/NativeReal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/NativeReal.c -------------------------------------------------------------------------------- /skeletons/NativeReal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/NativeReal.h -------------------------------------------------------------------------------- /skeletons/NumericString.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/NumericString.c -------------------------------------------------------------------------------- /skeletons/NumericString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/NumericString.h -------------------------------------------------------------------------------- /skeletons/OBJECT_IDENTIFIER.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/OBJECT_IDENTIFIER.c -------------------------------------------------------------------------------- /skeletons/OBJECT_IDENTIFIER.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/OBJECT_IDENTIFIER.h -------------------------------------------------------------------------------- /skeletons/OCTET_STRING.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/OCTET_STRING.c -------------------------------------------------------------------------------- /skeletons/OCTET_STRING.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/OCTET_STRING.h -------------------------------------------------------------------------------- /skeletons/OCTET_STRING_oer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/OCTET_STRING_oer.c -------------------------------------------------------------------------------- /skeletons/OPEN_TYPE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/OPEN_TYPE.c -------------------------------------------------------------------------------- /skeletons/OPEN_TYPE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/OPEN_TYPE.h -------------------------------------------------------------------------------- /skeletons/OPEN_TYPE_oer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/OPEN_TYPE_oer.c -------------------------------------------------------------------------------- /skeletons/ObjectDescriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/ObjectDescriptor.c -------------------------------------------------------------------------------- /skeletons/ObjectDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/ObjectDescriptor.h -------------------------------------------------------------------------------- /skeletons/PrintableString.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/PrintableString.c -------------------------------------------------------------------------------- /skeletons/PrintableString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/PrintableString.h -------------------------------------------------------------------------------- /skeletons/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/README -------------------------------------------------------------------------------- /skeletons/REAL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/REAL.c -------------------------------------------------------------------------------- /skeletons/REAL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/REAL.h -------------------------------------------------------------------------------- /skeletons/RELATIVE-OID.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/RELATIVE-OID.c -------------------------------------------------------------------------------- /skeletons/RELATIVE-OID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/RELATIVE-OID.h -------------------------------------------------------------------------------- /skeletons/T61String.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/T61String.c -------------------------------------------------------------------------------- /skeletons/T61String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/T61String.h -------------------------------------------------------------------------------- /skeletons/TeletexString.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/TeletexString.c -------------------------------------------------------------------------------- /skeletons/TeletexString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/TeletexString.h -------------------------------------------------------------------------------- /skeletons/UTCTime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/UTCTime.c -------------------------------------------------------------------------------- /skeletons/UTCTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/UTCTime.h -------------------------------------------------------------------------------- /skeletons/UTF8String.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/UTF8String.c -------------------------------------------------------------------------------- /skeletons/UTF8String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/UTF8String.h -------------------------------------------------------------------------------- /skeletons/UniversalString.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/UniversalString.c -------------------------------------------------------------------------------- /skeletons/UniversalString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/UniversalString.h -------------------------------------------------------------------------------- /skeletons/VideotexString.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/VideotexString.c -------------------------------------------------------------------------------- /skeletons/VideotexString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/VideotexString.h -------------------------------------------------------------------------------- /skeletons/VisibleString.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/VisibleString.c -------------------------------------------------------------------------------- /skeletons/VisibleString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/VisibleString.h -------------------------------------------------------------------------------- /skeletons/asn_SEQUENCE_OF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/asn_SEQUENCE_OF.c -------------------------------------------------------------------------------- /skeletons/asn_SEQUENCE_OF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/asn_SEQUENCE_OF.h -------------------------------------------------------------------------------- /skeletons/asn_SET_OF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/asn_SET_OF.c -------------------------------------------------------------------------------- /skeletons/asn_SET_OF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/asn_SET_OF.h -------------------------------------------------------------------------------- /skeletons/asn_application.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/asn_application.c -------------------------------------------------------------------------------- /skeletons/asn_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/asn_application.h -------------------------------------------------------------------------------- /skeletons/asn_bit_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/asn_bit_data.c -------------------------------------------------------------------------------- /skeletons/asn_bit_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/asn_bit_data.h -------------------------------------------------------------------------------- /skeletons/asn_codecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/asn_codecs.h -------------------------------------------------------------------------------- /skeletons/asn_codecs_prim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/asn_codecs_prim.c -------------------------------------------------------------------------------- /skeletons/asn_codecs_prim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/asn_codecs_prim.h -------------------------------------------------------------------------------- /skeletons/asn_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/asn_internal.c -------------------------------------------------------------------------------- /skeletons/asn_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/asn_internal.h -------------------------------------------------------------------------------- /skeletons/asn_ioc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/asn_ioc.h -------------------------------------------------------------------------------- /skeletons/asn_random_fill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/asn_random_fill.c -------------------------------------------------------------------------------- /skeletons/asn_random_fill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/asn_random_fill.h -------------------------------------------------------------------------------- /skeletons/asn_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/asn_system.h -------------------------------------------------------------------------------- /skeletons/ber_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/ber_decoder.c -------------------------------------------------------------------------------- /skeletons/ber_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/ber_decoder.h -------------------------------------------------------------------------------- /skeletons/ber_tlv_length.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/ber_tlv_length.c -------------------------------------------------------------------------------- /skeletons/ber_tlv_length.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/ber_tlv_length.h -------------------------------------------------------------------------------- /skeletons/ber_tlv_tag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/ber_tlv_tag.c -------------------------------------------------------------------------------- /skeletons/ber_tlv_tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/ber_tlv_tag.h -------------------------------------------------------------------------------- /skeletons/constr_CHOICE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/constr_CHOICE.c -------------------------------------------------------------------------------- /skeletons/constr_CHOICE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/constr_CHOICE.h -------------------------------------------------------------------------------- /skeletons/constr_CHOICE_oer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/constr_CHOICE_oer.c -------------------------------------------------------------------------------- /skeletons/constr_SEQUENCE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/constr_SEQUENCE.c -------------------------------------------------------------------------------- /skeletons/constr_SEQUENCE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/constr_SEQUENCE.h -------------------------------------------------------------------------------- /skeletons/constr_SEQUENCE_OF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/constr_SEQUENCE_OF.c -------------------------------------------------------------------------------- /skeletons/constr_SEQUENCE_OF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/constr_SEQUENCE_OF.h -------------------------------------------------------------------------------- /skeletons/constr_SEQUENCE_oer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/constr_SEQUENCE_oer.c -------------------------------------------------------------------------------- /skeletons/constr_SET.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/constr_SET.c -------------------------------------------------------------------------------- /skeletons/constr_SET.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/constr_SET.h -------------------------------------------------------------------------------- /skeletons/constr_SET_OF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/constr_SET_OF.c -------------------------------------------------------------------------------- /skeletons/constr_SET_OF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/constr_SET_OF.h -------------------------------------------------------------------------------- /skeletons/constr_SET_OF_oer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/constr_SET_OF_oer.c -------------------------------------------------------------------------------- /skeletons/constr_TYPE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/constr_TYPE.c -------------------------------------------------------------------------------- /skeletons/constr_TYPE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/constr_TYPE.h -------------------------------------------------------------------------------- /skeletons/constraints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/constraints.c -------------------------------------------------------------------------------- /skeletons/constraints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/constraints.h -------------------------------------------------------------------------------- /skeletons/converter-example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/converter-example.c -------------------------------------------------------------------------------- /skeletons/der_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/der_encoder.c -------------------------------------------------------------------------------- /skeletons/der_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/der_encoder.h -------------------------------------------------------------------------------- /skeletons/file-dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/file-dependencies -------------------------------------------------------------------------------- /skeletons/oer_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/oer_decoder.c -------------------------------------------------------------------------------- /skeletons/oer_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/oer_decoder.h -------------------------------------------------------------------------------- /skeletons/oer_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/oer_encoder.c -------------------------------------------------------------------------------- /skeletons/oer_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/oer_encoder.h -------------------------------------------------------------------------------- /skeletons/oer_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/oer_support.c -------------------------------------------------------------------------------- /skeletons/oer_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/oer_support.h -------------------------------------------------------------------------------- /skeletons/per_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/per_decoder.c -------------------------------------------------------------------------------- /skeletons/per_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/per_decoder.h -------------------------------------------------------------------------------- /skeletons/per_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/per_encoder.c -------------------------------------------------------------------------------- /skeletons/per_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/per_encoder.h -------------------------------------------------------------------------------- /skeletons/per_opentype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/per_opentype.c -------------------------------------------------------------------------------- /skeletons/per_opentype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/per_opentype.h -------------------------------------------------------------------------------- /skeletons/per_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/per_support.c -------------------------------------------------------------------------------- /skeletons/per_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/per_support.h -------------------------------------------------------------------------------- /skeletons/standard-modules/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/standard-modules/README -------------------------------------------------------------------------------- /skeletons/xer_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/xer_decoder.c -------------------------------------------------------------------------------- /skeletons/xer_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/xer_decoder.h -------------------------------------------------------------------------------- /skeletons/xer_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/xer_encoder.c -------------------------------------------------------------------------------- /skeletons/xer_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/xer_encoder.h -------------------------------------------------------------------------------- /skeletons/xer_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/xer_support.c -------------------------------------------------------------------------------- /skeletons/xer_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/skeletons/xer_support.h -------------------------------------------------------------------------------- /tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/Makefile.am -------------------------------------------------------------------------------- /tests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/README -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/00-empty-OK.asn1: -------------------------------------------------------------------------------- 1 | ModuleTestEmpty DEFINITIONS ::= BEGIN END 2 | -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/01-empty-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/01-empty-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/02-garbage-NP.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/02-garbage-NP.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/03-enum-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/03-enum-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/03-enum-OK.asn1.-EF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/03-enum-OK.asn1.-EF -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/03-enum-OK.asn1.-Pfwide-types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/03-enum-OK.asn1.-Pfwide-types -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/04-enum-SE.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/04-enum-SE.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/04-enum-SE.asn1.-E: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/04-enum-SE.asn1.-E -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/05-enum-SE.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/05-enum-SE.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/06-enum-SE.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/06-enum-SE.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/07-int-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/07-int-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/07-int-OK.asn1.-EF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/07-int-OK.asn1.-EF -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/08-int-SE.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/08-int-SE.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/09-int-SE.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/09-int-SE.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/10-int-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/10-int-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/100-class-ref-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/100-class-ref-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/100-class-ref-OK.asn1.-EF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/100-class-ref-OK.asn1.-EF -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/101-class-ref-SE.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/101-class-ref-SE.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/102-class-ref-SE.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/102-class-ref-SE.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/102-class-ref-SE.asn1.-EF: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/103-reference-SE.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/103-reference-SE.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/104-param-1-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/104-param-1-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/105-param-2-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/105-param-2-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/106-param-constr-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/106-param-constr-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/106-param-constr-OK.asn1.-P: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/106-param-constr-OK.asn1.-P -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/107-param-constr-2-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/107-param-constr-2-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/108-param-constr-3-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/108-param-constr-3-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/109-bit-string-NP.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/109-bit-string-NP.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/11-int-SE.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/11-int-SE.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/110-param-3-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/110-param-3-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/111-param-4-SE.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/111-param-4-SE.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/112-param-class-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/112-param-class-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/112-param-class-OK.asn1.-EF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/112-param-class-OK.asn1.-EF -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/113-bit-string-SE.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/113-bit-string-SE.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/114-bit-string-NP.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/114-bit-string-NP.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/115-bit-string-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/115-bit-string-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/116-bit-string-SE.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/116-bit-string-SE.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/117-real-constraint-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/117-real-constraint-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/117-real-constraint-OK.asn1.-EF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/117-real-constraint-OK.asn1.-EF -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/118-per-constraint-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/118-per-constraint-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/119-per-strings-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/119-per-strings-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/119-per-strings-OK.asn1.-EF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/119-per-strings-OK.asn1.-EF -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/12-int-SE.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/12-int-SE.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/121-empty-imports-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/121-empty-imports-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/121-empty-imports-OK.asn1.-EF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/121-empty-imports-OK.asn1.-EF -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/122-pattern-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/122-pattern-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/123-valueassignment-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/123-valueassignment-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/123-valueassignment-OK.asn1.-EF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/123-valueassignment-OK.asn1.-EF -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/124-multiconstraint-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/124-multiconstraint-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/124-multiconstraint-OK.asn1.-EF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/124-multiconstraint-OK.asn1.-EF -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/125-bitstring-constraint-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/125-bitstring-constraint-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/126-per-extensions-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/126-per-extensions-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/127-per-long-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/127-per-long-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/127-per-long-OK.asn1.-Pgen-PER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/127-per-long-OK.asn1.-Pgen-PER -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/128-enum-SE.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/128-enum-SE.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/129-enum-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/129-enum-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/129-enum-OK.asn1.-EF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/129-enum-OK.asn1.-EF -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/129-enum-SE.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/129-enum-SE.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/13-resolver-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/13-resolver-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/130-enum-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/130-enum-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/130-enum-OK.asn1.-EF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/130-enum-OK.asn1.-EF -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/131-per-empty-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/131-per-empty-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/131-per-empty-OK.asn1.-Pgen-PER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/131-per-empty-OK.asn1.-Pgen-PER -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/132-per-choice-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/132-per-choice-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/133-per-constraints-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/133-per-constraints-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/134-per-long-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/134-per-long-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/134-per-long-OK.asn1.-Pgen-PER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/134-per-long-OK.asn1.-Pgen-PER -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/135-oer-short-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/135-oer-short-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/136-oer-long-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/136-oer-long-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/136-oer-long-OK.asn1.-Pgen-OER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/136-oer-long-OK.asn1.-Pgen-OER -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/137-oer-string-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/137-oer-string-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/137-oer-string-OK.asn1.-Pgen-OER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/137-oer-string-OK.asn1.-Pgen-OER -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/138-oer-constraints-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/138-oer-constraints-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/139-component-relation-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/139-component-relation-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/14-resolver-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/14-resolver-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/14-resolver-OK.asn1.-EF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/14-resolver-OK.asn1.-EF -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/140-component-relation-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/140-component-relation-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/141-component-relation-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/141-component-relation-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/142-anonymous-types-deco-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/142-anonymous-types-deco-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/144-ios-parameterization-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/144-ios-parameterization-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/149-with-components-SE.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/149-with-components-SE.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/149-with-components-SE.asn1.-E: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/149-with-components-SE.asn1.-E -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/15-resolver-SE.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/15-resolver-SE.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/150-with-components-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/150-with-components-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/150-with-components-OK.asn1.-EF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/150-with-components-OK.asn1.-EF -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/151-per-b2110-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/151-per-b2110-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/154-with-REAL-components-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/154-with-REAL-components-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/156-union-ios-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/156-union-ios-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/156-union-ios-OK.asn1.-Pgen-PER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/156-union-ios-OK.asn1.-Pgen-PER -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/157-per-canonical-order-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/157-per-canonical-order-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/16-constraint-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/16-constraint-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/16-constraint-OK.asn1.-EF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/16-constraint-OK.asn1.-EF -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/17-tags-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/17-tags-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/18-class-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/18-class-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/18-class-OK.asn1.-EF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/18-class-OK.asn1.-EF -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/19-param-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/19-param-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/19-param-OK.asn1.-EF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/19-param-OK.asn1.-EF -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/19-param-OK.asn1.-Pfwide-types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/19-param-OK.asn1.-Pfwide-types -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/20-constr-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/20-constr-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/20-constr-OK.asn1.-EF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/20-constr-OK.asn1.-EF -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/21-tags-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/21-tags-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/21-tags-OK.asn1.-EF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/21-tags-OK.asn1.-EF -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/22-tags-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/22-tags-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/22-tags-OK.asn1.-EF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/22-tags-OK.asn1.-EF -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/22-tags-OK.asn1.-Pfwide-types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/22-tags-OK.asn1.-Pfwide-types -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/23-bits-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/23-bits-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/23-bits-OK.asn1.-EF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/23-bits-OK.asn1.-EF -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/24-sequence-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/24-sequence-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/24-sequence-OK.asn1.-EF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/24-sequence-OK.asn1.-EF -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/25-misc-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/25-misc-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/26-sequence-SE.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/26-sequence-SE.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/27-set-SE.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/27-set-SE.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/28-tags-SE.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/28-tags-SE.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/29-tags-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/29-tags-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/30-set-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/30-set-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/30-set-OK.asn1.-Pfwide-types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/30-set-OK.asn1.-Pfwide-types -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/31-set-of-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/31-set-of-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/31-set-of-OK.asn1.-EF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/31-set-of-OK.asn1.-EF -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/31-set-of-OK.asn1.-Pfwide-types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/31-set-of-OK.asn1.-Pfwide-types -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/32-sequence-of-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/32-sequence-of-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/32-sequence-of-OK.asn1.-EF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/32-sequence-of-OK.asn1.-EF -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/32-sequence-of-OK.asn1.-P: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/32-sequence-of-OK.asn1.-P -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/33-misc-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/33-misc-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/34-class-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/34-class-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/34-class-OK.asn1.-EF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/34-class-OK.asn1.-EF -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/35-set-choice-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/35-set-choice-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/36-indirect-choice-SE.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/36-indirect-choice-SE.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/37-indirect-choice-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/37-indirect-choice-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/37-indirect-choice-OK.asn1.-EF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/37-indirect-choice-OK.asn1.-EF -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/38-comments-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/38-comments-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/39-sequence-of-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/39-sequence-of-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/40-int-optional-SE.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/40-int-optional-SE.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/41-int-optional-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/41-int-optional-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/42-real-life-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/42-real-life-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/42-real-life-OK.asn1.-EF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/42-real-life-OK.asn1.-EF -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/42-real-life-OK.asn1.-PR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/42-real-life-OK.asn1.-PR -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/43-recursion-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/43-recursion-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/44-choice-in-sequence-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/44-choice-in-sequence-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/44-choice-in-sequence-OK.asn1.-P: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/44-choice-in-sequence-OK.asn1.-P -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/45-undefined-type-SE.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/45-undefined-type-SE.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/46-redefine-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/46-redefine-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/46-redefine-OK.asn1.-PR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/46-redefine-OK.asn1.-PR -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/47-set-ext-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/47-set-ext-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/47-set-ext-OK.asn1.-Pfwide-types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/47-set-ext-OK.asn1.-Pfwide-types -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/48-real-life-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/48-real-life-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/49-real-life-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/49-real-life-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/49-real-life-OK.asn1.-E: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/49-real-life-OK.asn1.-E -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/50-constraint-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/50-constraint-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/50-constraint-OK.asn1.-Pgen-PER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/50-constraint-OK.asn1.-Pgen-PER -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/51-constraint-SE.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/51-constraint-SE.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/52-constraint-SE.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/52-constraint-SE.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/53-constraint-SE.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/53-constraint-SE.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/54-constraint-SE.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/54-constraint-SE.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/55-components-of-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/55-components-of-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/55-components-of-OK.asn1.-EF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/55-components-of-OK.asn1.-EF -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/56-components-of-SE.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/56-components-of-SE.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/57-components-of-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/57-components-of-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/58-param-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/58-param-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/58-param-OK.asn1.-EF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/58-param-OK.asn1.-EF -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/59-choice-extended-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/59-choice-extended-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/60-any-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/60-any-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/60-any-OK.asn1.-EF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/60-any-OK.asn1.-EF -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/60-any-OK.asn1.-Pfwide-types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/60-any-OK.asn1.-Pfwide-types -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/61-any-1-SE.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/61-any-1-SE.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/62-any-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/62-any-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/62-any-OK.asn1.-EF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/62-any-OK.asn1.-EF -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/63-any-2-SE.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/63-any-2-SE.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/64-oid-constr-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/64-oid-constr-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/65-multi-tag-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/65-multi-tag-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/66-ref-simple-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/66-ref-simple-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/67-embedded-choice-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/67-embedded-choice-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/68-enum-default-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/68-enum-default-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/69-reserved-words-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/69-reserved-words-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/70-xer-test-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/70-xer-test-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/70-xer-test-OK.asn1.-EF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/70-xer-test-OK.asn1.-EF -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/71-duplicate-types-SE.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/71-duplicate-types-SE.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/72-same-names-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/72-same-names-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/73-circular-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/73-circular-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/74-int-enum-constraints-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/74-int-enum-constraints-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/75-duplicate-modules-SE.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/75-duplicate-modules-SE.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/76-duplicate-modules-SW.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/76-duplicate-modules-SW.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/77-str-default-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/77-str-default-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/78-str-default-SE.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/78-str-default-SE.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/79-constrained-by-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/79-constrained-by-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/79-constrained-by-OK.asn1.-EF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/79-constrained-by-OK.asn1.-EF -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/80-chardefs-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/80-chardefs-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/81-type-default-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/81-type-default-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/82-with-comps-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/82-with-comps-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/82-with-comps-OK.asn1.-EF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/82-with-comps-OK.asn1.-EF -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/83-with-comps-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/83-with-comps-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/84-param-tags-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/84-param-tags-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/84-param-tags-OK.asn1.-EF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/84-param-tags-OK.asn1.-EF -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/85-comments-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/85-comments-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/86-atags-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/86-atags-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/86-atags-OK.asn1.-EF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/86-atags-OK.asn1.-EF -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/87-old-syntax-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/87-old-syntax-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/88-integer-enum-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/88-integer-enum-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/89-bit-string-enum-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/89-bit-string-enum-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/90-cond-int-type-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/90-cond-int-type-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/90-cond-int-type-OK.asn1.-P: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/90-cond-int-type-OK.asn1.-P -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/91-cond-int-blessSize-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/91-cond-int-blessSize-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/92-circular-loops-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/92-circular-loops-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/93-asn1c-controls-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/93-asn1c-controls-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/93-asn1c-controls-OK.asn1.-EF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/93-asn1c-controls-OK.asn1.-EF -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/94-set-optionals-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/94-set-optionals-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/94-set-optionals-OK.asn1.-P: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/94-set-optionals-OK.asn1.-P -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/95-choice-per-order-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/95-choice-per-order-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/96-type-identifier-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/96-type-identifier-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/97-type-identifier-SW.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/97-type-identifier-SW.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/98-attribute-class-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/98-attribute-class-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/98-attribute-class-OK.asn1.-P: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/98-attribute-class-OK.asn1.-P -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/99-class-sample-OK.asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/99-class-sample-OK.asn1 -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/Makefile.am -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/README -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/check-parsing-log2diff.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/check-parsing-log2diff.pl -------------------------------------------------------------------------------- /tests/tests-asn1c-compiler/check-parsing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-compiler/check-parsing.sh -------------------------------------------------------------------------------- /tests/tests-asn1c-smoke/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-smoke/Makefile.am -------------------------------------------------------------------------------- /tests/tests-asn1c-smoke/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-smoke/README -------------------------------------------------------------------------------- /tests/tests-asn1c-smoke/check-asn1c-smoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-asn1c-smoke/check-asn1c-smoke.sh -------------------------------------------------------------------------------- /tests/tests-c-compiler/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/Makefile.am -------------------------------------------------------------------------------- /tests/tests-c-compiler/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/README -------------------------------------------------------------------------------- /tests/tests-c-compiler/check-assembly.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/check-assembly.sh -------------------------------------------------------------------------------- /tests/tests-c-compiler/check-src/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | EXTRA_DIST = $(srcdir)/check-*.c 3 | 4 | -------------------------------------------------------------------------------- /tests/tests-c-compiler/check-src/check-03.-fwide-types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/check-src/check-03.-fwide-types.c -------------------------------------------------------------------------------- /tests/tests-c-compiler/check-src/check-119.-gen-PER.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/check-src/check-119.-gen-PER.c -------------------------------------------------------------------------------- /tests/tests-c-compiler/check-src/check-126.-gen-PER.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/check-src/check-126.-gen-PER.c -------------------------------------------------------------------------------- /tests/tests-c-compiler/check-src/check-127.-gen-PER.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/check-src/check-127.-gen-PER.c -------------------------------------------------------------------------------- /tests/tests-c-compiler/check-src/check-131.-gen-PER.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/check-src/check-131.-gen-PER.c -------------------------------------------------------------------------------- /tests/tests-c-compiler/check-src/check-132.-gen-PER.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/check-src/check-132.-gen-PER.c -------------------------------------------------------------------------------- /tests/tests-c-compiler/check-src/check-133.-gen-PER.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/check-src/check-133.-gen-PER.c -------------------------------------------------------------------------------- /tests/tests-c-compiler/check-src/check-135.-gen-OER.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/check-src/check-135.-gen-OER.c -------------------------------------------------------------------------------- /tests/tests-c-compiler/check-src/check-137.-gen-OER.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/check-src/check-137.-gen-OER.c -------------------------------------------------------------------------------- /tests/tests-c-compiler/check-src/check-148.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/check-src/check-148.c -------------------------------------------------------------------------------- /tests/tests-c-compiler/check-src/check-19.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/check-src/check-19.c -------------------------------------------------------------------------------- /tests/tests-c-compiler/check-src/check-22.-fwide-types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/check-src/check-22.-fwide-types.c -------------------------------------------------------------------------------- /tests/tests-c-compiler/check-src/check-24.-fwide-types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/check-src/check-24.-fwide-types.c -------------------------------------------------------------------------------- /tests/tests-c-compiler/check-src/check-25.-fwide-types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/check-src/check-25.-fwide-types.c -------------------------------------------------------------------------------- /tests/tests-c-compiler/check-src/check-30.-fwide-types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/check-src/check-30.-fwide-types.c -------------------------------------------------------------------------------- /tests/tests-c-compiler/check-src/check-31.-fwide-types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/check-src/check-31.-fwide-types.c -------------------------------------------------------------------------------- /tests/tests-c-compiler/check-src/check-32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/check-src/check-32.c -------------------------------------------------------------------------------- /tests/tests-c-compiler/check-src/check-33.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/check-src/check-33.c -------------------------------------------------------------------------------- /tests/tests-c-compiler/check-src/check-35.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/check-src/check-35.c -------------------------------------------------------------------------------- /tests/tests-c-compiler/check-src/check-39.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/check-src/check-39.c -------------------------------------------------------------------------------- /tests/tests-c-compiler/check-src/check-41.-fwide-types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/check-src/check-41.-fwide-types.c -------------------------------------------------------------------------------- /tests/tests-c-compiler/check-src/check-41.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/check-src/check-41.c -------------------------------------------------------------------------------- /tests/tests-c-compiler/check-src/check-42.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/check-src/check-42.c -------------------------------------------------------------------------------- /tests/tests-c-compiler/check-src/check-43.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/check-src/check-43.c -------------------------------------------------------------------------------- /tests/tests-c-compiler/check-src/check-44.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/check-src/check-44.c -------------------------------------------------------------------------------- /tests/tests-c-compiler/check-src/check-46.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/check-src/check-46.c -------------------------------------------------------------------------------- /tests/tests-c-compiler/check-src/check-48.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/check-src/check-48.c -------------------------------------------------------------------------------- /tests/tests-c-compiler/check-src/check-50.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/check-src/check-50.c -------------------------------------------------------------------------------- /tests/tests-c-compiler/check-src/check-59.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/check-src/check-59.c -------------------------------------------------------------------------------- /tests/tests-c-compiler/check-src/check-60.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/check-src/check-60.c -------------------------------------------------------------------------------- /tests/tests-c-compiler/check-src/check-62.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/check-src/check-62.c -------------------------------------------------------------------------------- /tests/tests-c-compiler/check-src/check-65.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/check-src/check-65.c -------------------------------------------------------------------------------- /tests/tests-c-compiler/check-src/check-70.-fwide-types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/check-src/check-70.-fwide-types.c -------------------------------------------------------------------------------- /tests/tests-c-compiler/check-src/check-70.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/check-src/check-70.c -------------------------------------------------------------------------------- /tests/tests-c-compiler/check-src/check-73.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/check-src/check-73.c -------------------------------------------------------------------------------- /tests/tests-c-compiler/check-src/check-92.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/check-src/check-92.c -------------------------------------------------------------------------------- /tests/tests-c-compiler/check-src/check64-134.-gen-PER.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/check-src/check64-134.-gen-PER.c -------------------------------------------------------------------------------- /tests/tests-c-compiler/check-src/check64-136.-gen-OER.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/check-src/check64-136.-gen-OER.c -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-119/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-119/README -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-119/data-119-01.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-119/data-119-01.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-119/data-119-02.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-119/data-119-02.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-119/data-119-03.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-119/data-119-03.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-119/data-119-04-P.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-119/data-119-04-P.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-119/data-119-05.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-119/data-119-05.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-119/data-119-06-P.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-119/data-119-06-P.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-119/data-119-07-P.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-119/data-119-07-P.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-119/data-119-08.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-119/data-119-08.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-119/data-119-09.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-119/data-119-09.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-119/data-119-10.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-119/data-119-10.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-119/data-119-11-P.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-119/data-119-11-P.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-119/data-119-12-P.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-119/data-119-12-P.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-119/data-119-13-P.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-119/data-119-13-P.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-119/data-119-14-P.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-119/data-119-14-P.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-119/data-119-15.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-119/data-119-15.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-119/data-119-16.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-119/data-119-16.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-119/data-119-17.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-119/data-119-17.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-119/data-119-18.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-119/data-119-18.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-119/data-119-19.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-119/data-119-19.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-119/data-119-20-P.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-119/data-119-20-P.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-119/data-119-21-P.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-119/data-119-21-P.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-119/data-119-22-P.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-119/data-119-22-P.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-119/data-119-23-P.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-119/data-119-23-P.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-119/data-119-24-P.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-119/data-119-24-P.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-119/data-119-25-P.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-119/data-119-25-P.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-126/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-126/README -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-126/data-126-01.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-126/data-126-01.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-126/data-126-01.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-126/data-126-01.out -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-126/data-126-02-P.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-126/data-126-02-P.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-126/data-126-02-P.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-126/data-126-02-P.out -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-126/data-126-03-P.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-126/data-126-03-P.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-126/data-126-03-P.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-126/data-126-03-P.out -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-126/data-126-04-P.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-126/data-126-04-P.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-126/data-126-04-P.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-126/data-126-04-P.out -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-126/data-126-05-P.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-126/data-126-05-P.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-126/data-126-05-P.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-126/data-126-05-P.out -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-126/data-126-06-P.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-126/data-126-06-P.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-126/data-126-06-P.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-126/data-126-06-P.out -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-126/data-126-07-P.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-126/data-126-07-P.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-126/data-126-07-P.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-126/data-126-07-P.out -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-126/data-126-08-P.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-126/data-126-08-P.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-126/data-126-08-P.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-126/data-126-08-P.out -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-126/data-126-09-C.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-126/data-126-09-C.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-126/data-126-09-C.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-126/data-126-09-C.out -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-126/data-126-10-C.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-126/data-126-10-C.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-126/data-126-10-C.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-126/data-126-10-C.out -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-126/data-126-11-C.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-126/data-126-11-C.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-126/data-126-11-C.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-126/data-126-11-C.out -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-126/data-126-12.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-126/data-126-12.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-126/data-126-12.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-126/data-126-12.out -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-126/data-126-13.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-126/data-126-13.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-126/data-126-13.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-126/data-126-13.out -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-126/data-126-14.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-126/data-126-14.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-126/data-126-14.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-126/data-126-14.out -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-126/data-126-15.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-126/data-126-15.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-126/data-126-15.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-126/data-126-15.out -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-126/data-126-16.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-126/data-126-16.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-126/data-126-16.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-126/data-126-16.out -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-126/data-126-17.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-126/data-126-17.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-126/data-126-17.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-126/data-126-17.out -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-126/data-126-18-X.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-126/data-126-18-X.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-126/data-126-18-X.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-126/data-126-18-X.out -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-126/data-126-19.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-126/data-126-19.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-126/data-126-19.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-126/data-126-19.out -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-126/data-126-20.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-126/data-126-20.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-126/data-126-20.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-126/data-126-20.out -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-126/data-126-21.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-126/data-126-21.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-126/data-126-21.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-126/data-126-21.out -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/Makefile -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/README -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-01.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-01.ber -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-01.xbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-01.xbr -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-02-B.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-02-B.ber -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-02-B.xbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-02-B.xbr -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-03-B.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-03-B.ber -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-03-B.xbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-03-B.xbr -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-04-B.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-04-B.ber -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-04-B.xbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-04-B.xbr -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-05-B.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-05-B.ber -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-05-B.xbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-05-B.xbr -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-06-B.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-06-B.ber -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-06-B.xbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-06-B.xbr -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-07-B.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-07-B.ber -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-07-B.xbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-07-B.xbr -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-08-L.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-08-L.ber -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-08-L.xbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-08-L.xbr -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-09-L.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-09-L.ber -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-09-L.xbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-09-L.xbr -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-10.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-10.ber -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-10.xbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-10.xbr -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-11.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-11.ber -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-11.xbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-11.xbr -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-12-B.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-12-B.ber -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-12-B.xbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-12-B.xbr -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-13-B.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-13-B.ber -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-13-B.xbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-13-B.xbr -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-14.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-14.ber -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-14.xbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-14.xbr -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-15-B.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-15-B.ber -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-15-B.xbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-15-B.xbr -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-16.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-16.ber -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-16.xbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-16.xbr -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-17-B.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-17-B.ber -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-17-B.xbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-17-B.xbr -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-18-B.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-18-B.ber -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-18-B.xbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-18-B.xbr -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-19-B.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-19-B.ber -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-19-B.xbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-19-B.xbr -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-20.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-20.ber -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-20.xbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-20.xbr -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-21-B.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-21-B.ber -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-21-B.xbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-21-B.xbr -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-22.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-22.ber -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-22.xbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-22.xbr -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-23-B.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-23-B.ber -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-23-B.xbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-23-B.xbr -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-24-L.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-24-L.ber -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-24-L.xbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-24-L.xbr -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-25.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-25.ber -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-25.xbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-25.xbr -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-26-B.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-26-B.ber -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-26-B.xbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-26-B.xbr -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-27.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-27.ber -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-27.xbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-27.xbr -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-28-D.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-28-D.ber -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-28-D.xbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-28-D.xbr -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-29-L.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-29-L.ber -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-29-L.xbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-29-L.xbr -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-30-L.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-30-L.ber -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-30-L.xbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-30-L.xbr -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-31-D.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-31-D.ber -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-31-D.xbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-31-D.xbr -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-32.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-32.ber -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-62/data-62-32.xbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-62/data-62-32.xbr -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/README -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-01.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-01.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-02.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-02.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-03.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-03.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-04-B.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-04-B.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-05-B.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-05-B.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-06-B.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-06-B.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-07-D.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-07-D.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-08-B.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-08-B.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-09-D.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-09-D.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-10.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-10.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-11.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-11.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-12.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-12.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-13-D.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-13-D.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-14-D.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-14-D.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-15.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-15.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-16-B.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-16-B.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-17-D.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-17-D.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-18.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-18.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-19.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-19.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-20-D.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-20-D.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-21-D.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-21-D.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-22-D.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-22-D.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-23-D.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-23-D.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-24-D.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-24-D.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-25.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-25.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-26-B.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-26-B.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-27.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-27.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-28.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-28.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-29-D.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-29-D.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-30-B.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-30-B.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-31-B.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-31-B.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-32.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-32.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-33.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-33.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-34-B.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-34-B.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-35-B.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-35-B.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-36.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-36.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-37-D.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-37-D.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-38-B.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-38-B.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-39.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-39.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-40-D.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-40-D.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-41-D.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-41-D.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-42-E.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-42-E.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-43-E.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-43-E.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-44-X.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-44-X.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-45-X.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-45-X.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-46-X.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-46-X.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-47.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-47.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-48.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-48.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-49.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-49.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-50.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-50.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-51.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-51.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-52-D.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-52-D.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-53.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-53.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-54-D.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-54-D.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-55.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-55.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-56.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-56.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-57-D.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-57-D.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-58-D.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-58-D.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-59-D.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-59-D.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-60-D.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-60-D.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-61-D.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-61-D.in -------------------------------------------------------------------------------- /tests/tests-c-compiler/data-70/data-70-62-D.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-c-compiler/data-70/data-70-62-D.in -------------------------------------------------------------------------------- /tests/tests-randomized/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-randomized/Makefile.am -------------------------------------------------------------------------------- /tests/tests-randomized/bundles/00-NULL-bundle.txt: -------------------------------------------------------------------------------- 1 | NULL 2 | -------------------------------------------------------------------------------- /tests/tests-randomized/bundles/01-BOOLEAN-bundle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-randomized/bundles/01-BOOLEAN-bundle.txt -------------------------------------------------------------------------------- /tests/tests-randomized/bundles/02-INTEGER-bundle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-randomized/bundles/02-INTEGER-bundle.txt -------------------------------------------------------------------------------- /tests/tests-randomized/bundles/03-ENUMERATED-bundle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-randomized/bundles/03-ENUMERATED-bundle.txt -------------------------------------------------------------------------------- /tests/tests-randomized/bundles/04-REAL-bundle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-randomized/bundles/04-REAL-bundle.txt -------------------------------------------------------------------------------- /tests/tests-randomized/bundles/05-BIT-STRING-bundle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-randomized/bundles/05-BIT-STRING-bundle.txt -------------------------------------------------------------------------------- /tests/tests-randomized/bundles/08-OBJECT-IDENTIFIER-bundle.txt: -------------------------------------------------------------------------------- 1 | OBJECT IDENTIFIER 2 | -------------------------------------------------------------------------------- /tests/tests-randomized/bundles/09-RELATIVE-OID-bundle.txt: -------------------------------------------------------------------------------- 1 | RELATIVE-OID 2 | -------------------------------------------------------------------------------- /tests/tests-randomized/bundles/10-UTF8String-bundle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-randomized/bundles/10-UTF8String-bundle.txt -------------------------------------------------------------------------------- /tests/tests-randomized/bundles/11-BMPString-bundle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-randomized/bundles/11-BMPString-bundle.txt -------------------------------------------------------------------------------- /tests/tests-randomized/bundles/13-UTCTime-bundle.txt: -------------------------------------------------------------------------------- 1 | UTCTime 2 | -------------------------------------------------------------------------------- /tests/tests-randomized/bundles/14-GeneralizedTime-bundle.txt: -------------------------------------------------------------------------------- 1 | GeneralizedTime 2 | -------------------------------------------------------------------------------- /tests/tests-randomized/bundles/15-CHOICE-bundle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-randomized/bundles/15-CHOICE-bundle.txt -------------------------------------------------------------------------------- /tests/tests-randomized/bundles/16-SEQUENCE-bundle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-randomized/bundles/16-SEQUENCE-bundle.txt -------------------------------------------------------------------------------- /tests/tests-randomized/bundles/17-SEQUENCE-OF-bundle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-randomized/bundles/17-SEQUENCE-OF-bundle.txt -------------------------------------------------------------------------------- /tests/tests-randomized/bundles/19-SET-OF-bundle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-randomized/bundles/19-SET-OF-bundle.txt -------------------------------------------------------------------------------- /tests/tests-randomized/bundles/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-randomized/bundles/README -------------------------------------------------------------------------------- /tests/tests-randomized/check-bundles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-randomized/check-bundles.sh -------------------------------------------------------------------------------- /tests/tests-randomized/random-test-driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-randomized/random-test-driver.c -------------------------------------------------------------------------------- /tests/tests-randomized/test-param-helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-randomized/test-param-helper.c -------------------------------------------------------------------------------- /tests/tests-skeletons/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-skeletons/Makefile.am -------------------------------------------------------------------------------- /tests/tests-skeletons/check-GeneralizedTime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-skeletons/check-GeneralizedTime.c -------------------------------------------------------------------------------- /tests/tests-skeletons/check-INTEGER.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-skeletons/check-INTEGER.c -------------------------------------------------------------------------------- /tests/tests-skeletons/check-OCTET_STRING.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-skeletons/check-OCTET_STRING.c -------------------------------------------------------------------------------- /tests/tests-skeletons/check-OER-INTEGER.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-skeletons/check-OER-INTEGER.c -------------------------------------------------------------------------------- /tests/tests-skeletons/check-OER-NativeEnumerated.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-skeletons/check-OER-NativeEnumerated.c -------------------------------------------------------------------------------- /tests/tests-skeletons/check-OER-support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-skeletons/check-OER-support.c -------------------------------------------------------------------------------- /tests/tests-skeletons/check-OIDs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-skeletons/check-OIDs.c -------------------------------------------------------------------------------- /tests/tests-skeletons/check-PER-INTEGER.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-skeletons/check-PER-INTEGER.c -------------------------------------------------------------------------------- /tests/tests-skeletons/check-PER-UniversalString.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-skeletons/check-PER-UniversalString.c -------------------------------------------------------------------------------- /tests/tests-skeletons/check-PER-support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-skeletons/check-PER-support.c -------------------------------------------------------------------------------- /tests/tests-skeletons/check-REAL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-skeletons/check-REAL.c -------------------------------------------------------------------------------- /tests/tests-skeletons/check-UTCTime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-skeletons/check-UTCTime.c -------------------------------------------------------------------------------- /tests/tests-skeletons/check-UTF8String.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-skeletons/check-UTF8String.c -------------------------------------------------------------------------------- /tests/tests-skeletons/check-XER.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-skeletons/check-XER.c -------------------------------------------------------------------------------- /tests/tests-skeletons/check-ber_tlv_tag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-skeletons/check-ber_tlv_tag.c -------------------------------------------------------------------------------- /tests/tests-skeletons/check-bits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-skeletons/check-bits.c -------------------------------------------------------------------------------- /tests/tests-skeletons/check-length.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-skeletons/check-length.c -------------------------------------------------------------------------------- /tests/tests-skeletons/disable-leak-check-m32.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlm/asn1c/HEAD/tests/tests-skeletons/disable-leak-check-m32.sh --------------------------------------------------------------------------------