mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-18 13:25:43 +01:00
10 lines
185 B
C
10 lines
185 B
C
|
#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;
|
||
|
}
|