asn1_* renamed into asn_*

diff --git a/skeletons/constr_TYPE.c b/skeletons/constr_TYPE.c
index c0e966a..4bc88d4 100644
--- a/skeletons/constr_TYPE.c
+++ b/skeletons/constr_TYPE.c
@@ -17,7 +17,7 @@
  * Return the outmost tag of the type.
  */
 ber_tlv_tag_t
-asn1_TYPE_outmost_tag(asn1_TYPE_descriptor_t *type_descriptor,
+asn_TYPE_outmost_tag(asn_TYPE_descriptor_t *type_descriptor,
 		const void *struct_ptr, int tag_mode, ber_tlv_tag_t tag) {
 
 	if(tag_mode)
@@ -33,7 +33,7 @@
  * Print the target language's structure in human readable form.
  */
 int
-asn_fprint(FILE *stream, asn1_TYPE_descriptor_t *td, const void *struct_ptr) {
+asn_fprint(FILE *stream, asn_TYPE_descriptor_t *td, const void *struct_ptr) {
 	if(!stream) stream = stdout;
 	if(!td || !struct_ptr) {
 		errno = EINVAL;