1 #ifndef _ASN1FIX_CONSTRAINT_H_ 2 #define _ASN1FIX_CONSTRAINT_H_ 3 4 /* 5 * Resolve referenced values inside constraints. 6 */ 7 int asn1constraint_resolve(arg_t *arg, asn1p_constraint_t *ct, 8 asn1p_expr_type_e topmost_parent_expression_type, 9 enum asn1p_constraint_type_e effective_constraint_type); 10 11 /* 12 * Collect all subtype constraints from all parents of this type and 13 * the type itself, forming a full constraint structure. 14 * Honors the constraints extensibility rules (46.8) 15 * and does other useful transformations. 16 */ 17 int asn1constraint_pullup(arg_t *arg); 18 19 #endif /* _ASN1FIX_CONSTRAINT_H_ */ 20