/**
 * print a timestamped log line
 *
 * usage is the same as printf()
 *
 * Author: Dave Eddy <dave@daveeddy.com>
 * License: MIT
 */

#ifndef _LOG_TIMESTAMP_H
#define _LOG_TIMESTAMP_H
/**
 * print a timestamped log line
 *
 * usage is the same as printf()
 *
 * returns nothing
 */
void LOG(const char *fmt, ...);
#endif
