Standard library header <debugging> (C++26)

From cppreference.com

This header is part of the diagnostics library.

Synopsis

// all freestanding
namespace std {
  // debugging utility
  void breakpoint() noexcept;
  void breakpoint_if_debugging() noexcept;
  bool is_debugger_present() noexcept;
}