diff options
author | Dariusz Michaluk <d.michaluk@samsung.com> | 2024-02-13 15:38:29 +0100 |
---|---|---|
committer | Dariusz Michaluk <d.michaluk@samsung.com> | 2024-02-13 15:38:29 +0100 |
commit | 031996ef501f8c3d0532f7df1c38cf2e540a4f11 (patch) | |
tree | 27217d793b273edadc969aa3110378aac3c36e9c /lib/element.h | |
parent | 26bea900a531662c6028ecc06f4adea825658434 (diff) | |
download | libtasn1-upstream.tar.gz libtasn1-upstream.tar.bz2 libtasn1-upstream.zip |
Imported Upstream version 4.19.0upstream/4.19.0upstream
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 |