xref: /aosp_15_r20/external/coreboot/util/nvramtool/accessors/layout-text.h (revision b9411a12aaaa7e1e6a6fb7c5e057f44ee179a49c)
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef LAYOUT_FILE_H
4 #define LAYOUT_FILE_H
5 
6 #include "common.h"
7 #include "coreboot_tables.h"
8 
9 void set_layout_filename(const char filename[]);
10 void get_layout_from_file(void);
11 void write_cmos_layout(FILE * f);
12 void write_cmos_output_bin(const char *binary_filename);
13 void write_cmos_layout_header(const char *header_filename);
14 extern int is_ident(char *str);
15 
16 #endif				/* LAYOUT_FILE_H */
17