1 /* bincfg - Compiler/Decompiler for data blobs with specs */
2 /* SPDX-License-Identifier: GPL-3.0-or-later */
9 #define CHECKSUM_SIZE 16
18 /* Bit array intermediary representation */
22 unsigned short checksum
;
23 unsigned char *actualblob
;
24 unsigned int lenactualblob
;
27 static struct field
*putsym (char const *, unsigned int);
28 static struct field
*getsym (char const *);
29 static void yyerror (FILE* fp
, char const *);
32 static struct blob
*binary
;
33 static struct field
*sym_table
;
34 static struct field
*sym_table_tail
;
36 #endif /* __BINCFG_H */