12345678910111213141516171819202122232425262728293031323334353637383940 |
- .TH "str_node" 3 "Fri Oct 7 2022" "Version 3.2.0" "tpm2-tss" \" -*- nroff -*-
- .ad l
- .nh
- .SH NAME
- str_node
- .SH SYNOPSIS
- .br
- .PP
- .PP
- \fC#include <fapi_types\&.h>\fP
- .SS "Data Fields"
- .in +1c
- .ti -1c
- .RI "char * \fBstr\fP"
- .br
- .ti -1c
- .RI "bool \fBfree_string\fP"
- .br
- .ti -1c
- .RI "struct \fBstr_node\fP * \fBnext\fP"
- .br
- .in -1c
- .SH "Detailed Description"
- .PP
- The data structure storing a linked list of strings\&.
- .PP
- The structure is used for the processing of file paths
- .SH "Field Documentation"
- .PP
- .SS "bool free_string"
- Indicates whether a free has to called on cleanup
- .SS "struct \fBstr_node\fP* next"
- Pointer to next element
- .SS "char* str"
- A string of the string list
- .SH "Author"
- .PP
- Generated automatically by Doxygen for tpm2-tss from the source code\&.
|