| 882 | /* The results of analyzing the file's contents after it is opened. */ |
| 883 | struct file_analysis { |
| 884 | /* The input buffer. */ |
| 885 | union input_buffer u; |
| 886 | |
| 887 | /* A temporary state used for parsing a TZ string in the file. */ |
| 888 | struct state st; |
| 889 | } u; |
| 890 | |
| 891 | #if defined PATH_MAX && !OPENAT_TZDIR && !SUPPRESS_TZDIR |
| 892 | /* The name of the file to be opened. */ |
| 893 | char fullname[PATH_MAX]; |
nothing calls this directly
no outgoing calls
no test coverage detected