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.
10 lines
185 B
10 lines
185 B
7 years ago
|
#include <common/utils.h>
|
||
|
#include <devtools/gen_print_wire.h>
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
u8 *m = tal_hexdata(NULL, argv[1], strlen(argv[1]));
|
||
|
print_message(m);
|
||
|
return 0;
|
||
|
}
|