mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-05 21:44:42 +01:00
12 lines
210 B
C
12 lines
210 B
C
#include <common/utils.h>
|
|
#include <devtools/gen_print_wire.h>
|
|
|
|
int main(int argc UNUSED, char *argv[])
|
|
{
|
|
setup_locale();
|
|
|
|
u8 *m = tal_hexdata(NULL, argv[1], strlen(argv[1]));
|
|
print_message(m);
|
|
return 0;
|
|
}
|