diff options
Diffstat (limited to 'doc/libtasn1.texi')
-rw-r--r-- | doc/libtasn1.texi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/libtasn1.texi b/doc/libtasn1.texi index 3b97215..fc88b25 100644 --- a/doc/libtasn1.texi +++ b/doc/libtasn1.texi @@ -229,16 +229,16 @@ The name "?LAST" indicates the last element of a @code{SET_OF} or The header file of this library is @file{libtasn1.h}. -@cindex Main type ASN1_TYPE +@cindex Main type asn_node_t -The main type used in it is @code{ASN1_TYPE}, and it's used to store +The main type used in it is @code{asn_node_t}, and it's used to store the ASN.1 definitions and structures (instances). -The constant @code{ASN1_TYPE_EMPTY} can be used for the variable +The constant @code{NULL} can be used for the variable initialization. For example: @example - ASN1_TYPE definitions=ASN1_TYPE_EMPTY; + asn_node_t definitions=NULL; @end example Some functions require a parameter named errorDescription of char* |