Blame test/tjutil.h

Packit Service b05338
/*
Packit Service b05338
 * Copyright (C)2011 D. R. Commander.  All Rights Reserved.
Packit Service b05338
 *
Packit Service b05338
 * Redistribution and use in source and binary forms, with or without
Packit Service b05338
 * modification, are permitted provided that the following conditions are met:
Packit Service b05338
 *
Packit Service b05338
 * - Redistributions of source code must retain the above copyright notice,
Packit Service b05338
 *   this list of conditions and the following disclaimer.
Packit Service b05338
 * - Redistributions in binary form must reproduce the above copyright notice,
Packit Service b05338
 *   this list of conditions and the following disclaimer in the documentation
Packit Service b05338
 *   and/or other materials provided with the distribution.
Packit Service b05338
 * - Neither the name of the libjpeg-turbo Project nor the names of its
Packit Service b05338
 *   contributors may be used to endorse or promote products derived from this
Packit Service b05338
 *   software without specific prior written permission.
Packit Service b05338
 *
Packit Service b05338
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS",
Packit Service b05338
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Packit Service b05338
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
Packit Service b05338
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
Packit Service b05338
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
Packit Service b05338
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
Packit Service b05338
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
Packit Service b05338
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
Packit Service b05338
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
Packit Service b05338
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
Packit Service b05338
 * POSSIBILITY OF SUCH DAMAGE.
Packit Service b05338
 */
Packit Service b05338
Packit Service b05338
#ifdef _WIN32
Packit Service b05338
	#ifndef __MINGW32__
Packit Service b05338
		#include <stdio.h>
Packit Service b05338
		#define snprintf(str, n, format, ...)  \
Packit Service b05338
			_snprintf_s(str, n, _TRUNCATE, format, __VA_ARGS__)
Packit Service b05338
	#endif
Packit Service b05338
	#define strcasecmp stricmp
Packit Service b05338
	#define strncasecmp strnicmp
Packit Service b05338
#endif
Packit Service b05338
Packit Service b05338
#ifndef min
Packit Service b05338
 #define min(a,b) ((a)<(b)?(a):(b))
Packit Service b05338
#endif
Packit Service b05338
Packit Service b05338
#ifndef max
Packit Service b05338
 #define max(a,b) ((a)>(b)?(a):(b))
Packit Service b05338
#endif
Packit Service b05338
Packit Service b05338
extern double gettime(void);