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.
 
 
 
 
 
 

11 lines
210 B

#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;
}