Sha256: eb4060c1694560b1a1f101cfa3371fa0eec4bc090f77e24e2a82745e73da9e9c

Contents?: true

Size: 533 Bytes

Versions: 34

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

34 entries across 34 versions & 1 rubygems

Version Path
xot-0.1.28 src/debug.cpp
xot-0.1.27 src/debug.cpp
xot-0.1.26 src/debug.cpp
xot-0.1.25 src/debug.cpp
xot-0.1.24 src/debug.cpp
xot-0.1.23 src/debug.cpp
xot-0.1.22 src/debug.cpp
xot-0.1.21 src/debug.cpp
xot-0.1.20 src/debug.cpp
xot-0.1.19 src/debug.cpp
xot-0.1.16 src/debug.cpp
xot-0.1.15 src/debug.cpp
xot-0.1.14 src/debug.cpp
xot-0.1.13 src/debug.cpp