/usr/include/volume_io/basic.h is in libminc-dev 2.2.00-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 | #ifndef DEF_BASIC
#define DEF_BASIC
/* ----------------------------------------------------------------------------
@COPYRIGHT :
Copyright 1993,1994,1995 David MacDonald,
McConnell Brain Imaging Centre,
Montreal Neurological Institute, McGill University.
Permission to use, copy, modify, and distribute this
software and its documentation for any purpose and without
fee is hereby granted, provided that the above copyright
notice appear in all copies. The author and McGill University
make no representations about the suitability of this
software for any purpose. It is provided "as is" without
express or implied warranty.
@VERSION : $Header: /private-cvsroot/minc/volume_io/Include/volume_io/basic.h,v 1.35 2005-05-19 21:19:27 bert Exp $
---------------------------------------------------------------------------- */
/* ----------------------------- MNI Header -----------------------------------
@NAME : basic.h
@INPUT :
@OUTPUT :
@RETURNS :
@DESCRIPTION: A set of macros and definitions useful for all MNI programs.
@METHOD :
@GLOBALS :
@CALLS :
@CREATED : July 15, 1991 David MacDonald
@MODIFIED :
---------------------------------------------------------------------------- */
#include <math.h>
#include <stdlib.h>
#include <stdio.h>
#ifdef __sgi
#include <string.h> /* --- for memcpy, etc. */
#else
#include <memory.h> /* --- for memcpy, etc. */
#endif
#include <volume_io/def_math.h>
#include <volume_io/system_dependent.h>
/* --------- define TRUE and FALSE ------------------------ */
#ifndef FALSE
#define FALSE 0
#endif
#ifndef TRUE
#define TRUE 1
#endif
/* These are the internal typedefs, which are aliased to their "classic"
* volume_io names below, if the new VIO_PREFIX_NAMES macro is set to
* zero.
*/
typedef char *VIO_STR;
typedef int VIO_BOOL;
typedef double VIO_Real;
typedef signed char VIO_SCHAR;
typedef unsigned char VIO_UCHAR;
typedef enum {
OK,
ERROR,
INTERNAL_ERROR,
END_OF_FILE,
QUIT
} VIO_Status;
#if !VIO_PREFIX_NAMES /* Play nice with others */
#ifndef __cplusplus
#ifndef private
#define private static
#endif /* private */
#ifndef public
#define public
#endif /* public */
#ifndef semiprivate
#define semiprivate
#endif /* semiprivate */
#endif /* __cplusplus */
#define OFF FALSE
#define ON TRUE
/* --------- macro to determine the size of a static array,
e.g., int array[] = { 1, 3, 9, 5 }; ------------ */
#define SIZEOF_STATIC_ARRAY( array ) \
(int) ( sizeof(array) / sizeof((array)[0]))
/* --------- interpolate between a and b ------------------- */
#define INTERPOLATE( alpha, a, b ) ((a) + (alpha) * ((b) - (a)))
/* --------- PI, and angles -------------------------------- */
#define PI M_PI /* from math.h */
#define DEG_TO_RAD (PI / 180.0)
#define RAD_TO_DEG (180.0 / PI)
/* --------- Absolute value, min, and max. Bear in mind that these
may evaluate an expression multiple times, i.e., ABS( x - y ),
and therefore may be inefficient, or incorrect,
i.e, ABS( ++x ); ------------------ */
#define ABS( x ) ( ((x) > 0) ? (x) : (-(x)) )
#define FABS( x ) fabs( (double) x )
#define SIGN( x ) ( ((x) > 0) ? 1 : (((x) < 0) ? -1 : 0) )
#define FSIGN( x ) ( ((x) > 0.0) ? 1.0 : (((x) < 0.0) ? -1.0 : 0.0) )
#ifdef MAX
#undef MAX
#endif
#define MAX( x, y ) ( ((x) >= (y)) ? (x) : (y) )
#define MAX3( x, y, z ) ( ((x) >= (y)) ? MAX( x, z ) : MAX( y, z ) )
#ifdef MIN
#undef MIN
#endif
#define MIN( x, y ) ( ((x) <= (y)) ? (x) : (y) )
#define MIN3( x, y, z ) ( ((x) <= (y)) ? MIN( x, z ) : MIN( y, z ) )
/* --------- gets the address of a 2-d array element in a 1-d array ----- */
#define IJ( i, j, nj ) ( (i) * (nj) + (j) )
/* --------- gets the address of a 3-d array element in a 1-d array ----- */
#define IJK( i, j, k, nj, nk ) ( (k) + (nk) * ((j) + (nj) * (i)) )
/* --------- environment variables -------------------------- */
#define ENV_EXISTS( env ) ( getenv(env) != (char *) 0 )
/* --------- C and LINT stuff -------------------------- */
#ifdef __STDC__
#define GLUE(x,y) x##y
#define GLUE3(x,y,z) x##y##z
#define CREATE_STRING(x) #x
#else
#define GLUE(x,y) x/**/y
#define GLUE3(x,y,z) x/**/y/**/z
#define CREATE_STRING(x) "x"
#endif
/* Basic types */
typedef VIO_SCHAR Smallest_int;
typedef VIO_UCHAR unsigned_byte;
typedef VIO_BOOL BOOLEAN;
typedef VIO_Real Real;
typedef VIO_STR STRING;
typedef VIO_Status Status;
#define REAL_MAX DBL_MAX
/* --------------- */
#define IS_INT( x ) ((double) (x) == (double) ((int) (x)))
#define FLOOR( x ) ((int) floor(x))
#define ROUND( x ) FLOOR( (double) (x) + 0.5 )
#define CEILING( x ) ((int) ceil(x))
#define FRACTION( x ) ((double) (x) - (double) FLOOR(x))
/* for loops */
#define for_less( i, start, end ) for( (i) = (start); (i) < (end); ++(i) )
#define for_down( i, start, end ) for( (i) = (start); (i) >= (end); --(i))
#define for_inclusive( i, start, end ) \
for( (i) = (start); (i) <= (end); ++(i) )
#define for_enum( e, max, type ) \
for( (e) = (type) 0; (e) < (max); (e) = (type) ((int) (e)+1) )
#define CONVERT_INTEGER_RANGE( x1, min1, max1, min2, max2 ) \
((min2) + (2 * (x1) + 1 - 2 * (min1)) * ((max2) - (min2) + 1) / \
((max1) - (min1) + 1) / 2)
#define HANDLE_INTERNAL_ERROR( X ) \
handle_internal_error( X )
#endif /* !VIO_PREFIX_NAMES */
#endif /* DEF_BASIC */
|