Sha256: eb4060c1694560b1a1f101cfa3371fa0eec4bc090f77e24e2a82745e73da9e9c

Contents?: true

Size: 533 Bytes

Versions: 31

Compression:

Stored size: 533 Bytes

Contents

#include "xot/debug.h"


#include <stdio.h>
#include <stdarg.h>
#include "xot/string.h"

// compile to check
#include "xot/pimpl.h"
#include "xot/ref.h"


namespace Xot
{


#ifdef XOT_USE_DOUT

	void
	dout (const char* format, ...)
	{
		va_list args;
		va_start(args, format);
		fprintf(stderr, "%s", stringf(format, args).c_str());
		va_end(args);
	}

	void
	doutln (const char* format, ...)
	{
		va_list args;
		va_start(args, format);
		fprintf(stderr, "%s\n", stringf(format, args).c_str());
		va_end(args);
	}

#endif


}// Xot

Version data entries

31 entries across 31 versions & 1 rubygems

Version Path
xot-0.3 src/debug.cpp
xot-0.2.1 src/debug.cpp
xot-0.2 src/debug.cpp
xot-0.1.42 src/debug.cpp
xot-0.1.41 src/debug.cpp
xot-0.1.40 src/debug.cpp
xot-0.1.39 src/debug.cpp
xot-0.1.38 src/debug.cpp
xot-0.1.37 src/debug.cpp
xot-0.1.36 src/debug.cpp
xot-0.1.35 src/debug.cpp
xot-0.1.34 src/debug.cpp
xot-0.1.33 src/debug.cpp
xot-0.1.32 src/debug.cpp
xot-0.1.31 src/debug.cpp
xot-0.1.30 src/debug.cpp
xot-0.1.29 src/debug.cpp
xot-0.1.28 src/debug.cpp
xot-0.1.27 src/debug.cpp
xot-0.1.26 src/debug.cpp