1 2 3 4 5 6 7 8 9 10 11 12
// SPDX-License-Identifier: BSD-3-Clause #include "functions.h" namespace p18 { bool is_valid_parallel_id(unsigned id) { return id >= 0 && id <= 6; } }