| 56 | } |
| 57 | |
| 58 | bool printwire_s8(const char *fieldname, const u8 **cursor, size_t *plen) |
| 59 | { |
| 60 | s8 v = fromwire_s8(cursor, plen); |
| 61 | if (!*cursor) { |
| 62 | printf("**TRUNCATED s64 %s**\n", fieldname); |
| 63 | return false; |
| 64 | } |
| 65 | printf("%d\n", v); |
| 66 | return true; |
| 67 | } |
| 68 | |
| 69 | bool printwire_s16(const char *fieldname, const u8 **cursor, size_t *plen) |
| 70 | { |
nothing calls this directly
no test coverage detected