/* Reporter - Debug.c
 *
 * Version 1.00 (06-Sep-2009)
 */

#ifndef _REPORTER_DEBUG
#define _REPORTER_DEBUG
/* ==================================================================================================================
 * Debug Printf
 *
 * Writes a string to Reporter, under control of the standard printf-style format string. Additional
 * parameters are supplied as required by the format.
 *
 * Parameters: format - standard printf-style format string.
 *             ...    - additional parameters as required by the format string.
 *
 * Returns:    the number of characters that were written to Reporter (or would have been, if >256).
 */

int debug_printf (char *format, ...);

#endif
