1#ifndef NINEDEBUG_H2#define NINEDEBUG_H34#include <stdio.h>56#define DEBUG_PRINT(...) printf(__VA_ARGS__)78#if ENABLE_DEBUG9 #define DEBUG(...) DEBUG_PRINT(__VA_ARGS__)10#else11 #define DEBUG(...)12#endif1314#endif
Client implementation of the 9P protocol for constrained devices
git clone https://git.8pit.net/ninenano.git
1#ifndef NINEDEBUG_H2#define NINEDEBUG_H34#include <stdio.h>56#define DEBUG_PRINT(...) printf(__VA_ARGS__)78#if ENABLE_DEBUG9 #define DEBUG(...) DEBUG_PRINT(__VA_ARGS__)10#else11 #define DEBUG(...)12#endif1314#endif