diff --git a/AK/RecursionDecision.h b/AK/RecursionDecision.h new file mode 100644 index 0000000000..d2982767a2 --- /dev/null +++ b/AK/RecursionDecision.h @@ -0,0 +1,19 @@ +/* + * Copyright (c) 2021, sin-ack + * + * SPDX-License-Identifier: BSD-2-Clause + */ + +#pragma once + +namespace AK { + +enum class RecursionDecision { + Recurse, + Continue, + Break, +}; + +} + +using AK::RecursionDecision;