#pragma once #include "common.h" #include namespace aoc2017 { struct spinlock { int val; spinlock* next = nullptr; spinlock* prev = nullptr; }; std::pair day17(line_view); }