| 78 | } |
| 79 | |
| 80 | bool printwire_s32(const char *fieldname, const u8 **cursor, size_t *plen) |
| 81 | { |
| 82 | s32 v = fromwire_s32(cursor, plen); |
| 83 | if (!*cursor) { |
| 84 | printf("**TRUNCATED s64 %s**\n", fieldname); |
| 85 | return false; |
| 86 | } |
| 87 | printf("%d\n", v); |
| 88 | return true; |
| 89 | } |
| 90 | |
| 91 | bool printwire_s64(const char *fieldname, const u8 **cursor, size_t *plen) |
| 92 | { |
nothing calls this directly
no test coverage detected