| 67 | } |
| 68 | |
| 69 | bool printwire_s16(const char *fieldname, const u8 **cursor, size_t *plen) |
| 70 | { |
| 71 | s16 v = fromwire_s16(cursor, plen); |
| 72 | if (!*cursor) { |
| 73 | printf("**TRUNCATED s64 %s**\n", fieldname); |
| 74 | return false; |
| 75 | } |
| 76 | printf("%d\n", v); |
| 77 | return true; |
| 78 | } |
| 79 | |
| 80 | bool printwire_s32(const char *fieldname, const u8 **cursor, size_t *plen) |
| 81 | { |
nothing calls this directly
no test coverage detected