You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
602 B
21 lines
602 B
6 years ago
|
/* This file was generated by generate-bolts.py */
|
||
|
/* Do not modify this file! Modify the _csv file it was generated from. */
|
||
|
/* Template located at tools/gen/print_header_template */
|
||
|
#ifndef LIGHTNING_${idem}
|
||
|
#define LIGHTNING_${idem}
|
||
|
#include <ccan/tal/tal.h>
|
||
|
#include <devtools/print_wire.h>
|
||
|
% for i in includes:
|
||
|
${i}
|
||
|
% endfor
|
||
|
|
||
|
void print${options.enum_name}_message(const u8 *msg);
|
||
|
|
||
|
void print${options.enum_name}_tlv_message(const char *tlv_name, const u8 *msg);
|
||
|
|
||
|
% for msg in messages:
|
||
|
void printwire_${msg.name}(const char *fieldname, const u8 *cursor);
|
||
|
|
||
|
% endfor
|
||
|
#endif /* LIGHTNING_${idem} */
|