#include "config.h" #include "enum.h" #include void towire_test_enum(u8 **pptr, const enum test_enum test_enum) { printf("this would have been the towire for enum %u\n", test_enum); } enum test_enum fromwire_test_enum(const u8 **cursor, size_t *max) { printf("fromwire_test_enum at %zu\n", *max); return TEST_ONE; } bool printwire_test_enum(const char *fieldname, const u8 **cursor, size_t *max) { enum test_enum e = fromwire_test_enum(cursor, max); if (!*cursor) return false; printf("%u\n", e); return true; }