|
kusano |
7d535a |
/* $Id: test_arrays.h,v 1.3 2006/03/23 14:54:02 dron Exp $ */
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
/*
|
|
kusano |
7d535a |
* Copyright (c) 2004, Andrey Kiselev <dron@ak4719.spb.edu></dron@ak4719.spb.edu>
|
|
kusano |
7d535a |
*
|
|
kusano |
7d535a |
* Permission to use, copy, modify, distribute, and sell this software and
|
|
kusano |
7d535a |
* its documentation for any purpose is hereby granted without fee, provided
|
|
kusano |
7d535a |
* that (i) the above copyright notices and this permission notice appear in
|
|
kusano |
7d535a |
* all copies of the software and related documentation, and (ii) the names of
|
|
kusano |
7d535a |
* Sam Leffler and Silicon Graphics may not be used in any advertising or
|
|
kusano |
7d535a |
* publicity relating to the software without the specific, prior written
|
|
kusano |
7d535a |
* permission of Sam Leffler and Silicon Graphics.
|
|
kusano |
7d535a |
*
|
|
kusano |
7d535a |
* THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
|
|
kusano |
7d535a |
* EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
|
|
kusano |
7d535a |
* WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
|
|
kusano |
7d535a |
*
|
|
kusano |
7d535a |
* IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
|
|
kusano |
7d535a |
* ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
|
|
kusano |
7d535a |
* OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
|
kusano |
7d535a |
* WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
|
|
kusano |
7d535a |
* LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
|
kusano |
7d535a |
* OF THIS SOFTWARE.
|
|
kusano |
7d535a |
*/
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
/*
|
|
kusano |
7d535a |
* TIFF Library
|
|
kusano |
7d535a |
*
|
|
kusano |
7d535a |
* Few declarations for the test numerical arrays.
|
|
kusano |
7d535a |
*/
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
#ifndef _TEST_ARRAYS_
|
|
kusano |
7d535a |
#define _TEST_ARRAYS_
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
#include <stddef.h></stddef.h>
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
#define XSIZE 37
|
|
kusano |
7d535a |
#define YSIZE 23
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
extern const unsigned char byte_array1[];
|
|
kusano |
7d535a |
extern const size_t byte_array1_size;
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
extern const unsigned char byte_array2[];
|
|
kusano |
7d535a |
extern const size_t byte_array2_size;
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
extern const unsigned char byte_array3[];
|
|
kusano |
7d535a |
extern const size_t byte_array3_size;
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
extern const float array_float1[];
|
|
kusano |
7d535a |
extern const size_t array_float1_size;
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
extern const float array_float2[];
|
|
kusano |
7d535a |
extern const size_t array_float2_size;
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
extern const double array_double1[];
|
|
kusano |
7d535a |
extern const size_t array_double1_size;
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
extern const double array_double2[];
|
|
kusano |
7d535a |
extern const size_t array_double2_size;
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
#endif /* _TEST_ARRAYS_ */
|
|
kusano |
7d535a |
|
|
kusano |
7d535a |
/* vim: set ts=8 sts=8 sw=8 noet: */
|