typedef struct { int a; int b; } ListNode;
void List_SetPrev(ListNode *p, int v) { p->b = v; }
