diff --git a/lib/asn1/asn1-template.h b/lib/asn1/asn1-template.h index c3591a1a2..3c0400a4c 100644 --- a/lib/asn1/asn1-template.h +++ b/lib/asn1/asn1-template.h @@ -155,9 +155,9 @@ extern struct asn1_type_func asn1_template_prim[A1T_NUM_ENTRY]; int _asn1_copy_top ( - const struct asn1_template */*t*/, - const void */*from*/, - void */*to*/); + const struct asn1_template * /*t*/, + const void * /*from*/, + void * /*to*/); void _asn1_free_top(const struct asn1_template *t, @@ -165,43 +165,43 @@ _asn1_free_top(const struct asn1_template *t, int _asn1_decode_top ( - const struct asn1_template */*t*/, + const struct asn1_template * /*t*/, unsigned /*flags*/, - const unsigned char */*p*/, + const unsigned char * /*p*/, size_t /*len*/, - void */*data*/, - size_t */*size*/); + void * /*data*/, + size_t * /*size*/); int _asn1_encode ( - const struct asn1_template */*t*/, - unsigned char */*p*/, + const struct asn1_template * /*t*/, + unsigned char * /*p*/, size_t /*len*/, - const void */*data*/, - size_t */*size*/); + const void * /*data*/, + size_t * /*size*/); int _asn1_encode_fuzzer ( - const struct asn1_template */*t*/, - unsigned char */*p*/, + const struct asn1_template * /*t*/, + unsigned char * /*p*/, size_t /*len*/, - const void */*data*/, - size_t */*size*/); + const void * /*data*/, + size_t * /*size*/); void _asn1_free ( - const struct asn1_template */*t*/, - void */*data*/); + const struct asn1_template * /*t*/, + void * /*data*/); size_t _asn1_length ( - const struct asn1_template */*t*/, - const void */*data*/); + const struct asn1_template * /*t*/, + const void * /*data*/); size_t _asn1_length_fuzzer ( - const struct asn1_template */*t*/, - const void */*data*/); + const struct asn1_template * /*t*/, + const void * /*data*/); #endif