/usr/include/medcon.h is in libmdc2-dev 0.14.1-1.
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 | /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* filename: medcon.h *
* *
* UTIL C-source: Medical Image Conversion Utility *
* *
* purpose : project header file *
* *
* project : (X)MedCon by Erik Nolf *
* *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* $Id: medcon.h,v 1.40 2015/12/22 13:59:30 enlf Exp $
*/
/*
Copyright (C) 1997-2016 by Erik Nolf
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 2, or (at your option) any later
version.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
59 Place - Suite 330, Boston, MA 02111-1307, USA. */
#ifndef __MEDCON_H__
#define __MEDCON_H__
/****************************************************************************
H E A D E R S
****************************************************************************/
#ifdef __cplusplus
extern "C" {
#endif
/* define _WIN32 in case of cygwin/mingw compilation */
#ifndef _WIN32
# ifdef __MINGW32__
# define _WIN32
# elif defined __CYGWIN32__
# define _WIN32
# endif
#endif
#include <stdio.h>
#include "m-defs.h"
#include "m-structs.h"
#include "m-error.h"
#include "m-files.h"
#include "m-debug.h"
#include "m-fancy.h"
#include "m-getopt.h"
#include "m-algori.h"
#include "m-color.h"
#include "m-global.h"
#include "m-pixels.h"
#include "m-xtract.h"
#include "m-init.h"
#include "m-vifi.h"
#include "m-rslice.h"
#include "m-transf.h"
#include "m-qmedian.h"
#include "m-split.h"
#include "m-stack.h"
#include "m-progress.h"
#include "m-raw.h"
#if MDC_INCLUDE_GIF
# include "m-gif.h"
#endif
#if MDC_INCLUDE_ACR
# include "m-acr.h"
#endif
#if MDC_INCLUDE_INW
# include "m-inw.h"
#endif
#if MDC_INCLUDE_INTF
# include "m-intf.h"
#endif
#if MDC_INCLUDE_CONC
# include "m-conc.h"
#endif
#if MDC_INCLUDE_ECAT
# include "m-ecat64.h"
# include "m-ecat72.h"
#endif
#if MDC_INCLUDE_ANLZ
# include "m-anlz.h"
#endif
#if MDC_INCLUDE_DICM
# include "m-dicm.h"
#endif
#if MDC_INCLUDE_PNG
# include "m-png.h"
#endif
#if MDC_INCLUDE_NIFTI
# include "m-nifti.h"
#endif
#ifdef __cplusplus
}
#endif
#endif
|