diff options
Diffstat (limited to 'lib/element.h')
-rw-r--r-- | lib/element.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/lib/element.h b/lib/element.h index 440a33f..8dd0ceb 100644 --- a/lib/element.h +++ b/lib/element.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2000-2014 Free Software Foundation, Inc. + * Copyright (C) 2000-2022 Free Software Foundation, Inc. * * This file is part of LIBTASN1. * @@ -20,21 +20,23 @@ */ #ifndef _ELEMENT_H -#define _ELEMENT_H +# define _ELEMENT_H struct node_tail_cache_st { - asn1_node head; /* the first element of the sequence */ - asn1_node tail; + asn1_node head; /* the first element of the sequence */ + asn1_node tail; }; -int _asn1_append_sequence_set (asn1_node node, struct node_tail_cache_st *pcached); +int _asn1_append_sequence_set (asn1_node node, + struct node_tail_cache_st *pcached); int _asn1_convert_integer (const unsigned char *value, unsigned char *value_out, int value_out_size, int *len); -void _asn1_hierarchical_name (asn1_node_const node, char *name, int name_size); +void _asn1_hierarchical_name (asn1_node_const node, char *name, + int name_size); #endif |