.. _program_listing_file_src_debug.h: Program Listing for File debug.h ================================ |exhale_lsh| :ref:`Return to documentation for file ` (``src/debug.h``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp #include #include "rmw/impl/cpp/macros.hpp" #define DEBUG_ENABLED 0 #if DEBUG_ENABLED #define DEBUG(...) printf(__VA_ARGS__) #else #define DEBUG(...) #endif