/*
 * asn1.h -- Header for ASN.1 functions.
 */

#ifndef	_asn1_h
#define	_asn1_h

/* Standard C only guarantees 6 character
 * external names. */

#define show_value_notation    asnSVN

/* function prototypes */

char *
show_value_notation(
#ifdef __STDC__
    char *,
    size_t,
    size_t
#endif
);

#endif  /* _asn_h */
