1 /**********
2 *
3 * Copyright (c) 2003, Division of Imaging Science and Biomedical Engineering,
4 * University of Manchester, UK. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without modification,
7 * are permitted provided that the following conditions are met:
8 *
9 * . Redistributions of source code must retain the above copyright notice,
10 * this list of conditions and the following disclaimer.
11 *
12 * . Redistributions in binary form must reproduce the above copyright notice,
13 * this list of conditions and the following disclaimer in the documentation
14 * and/or other materials provided with the distribution.
15 *
16 * . Neither the name of the University of Manchester nor the names of its
17 * contributors may be used to endorse or promote products derived from this
18 * software without specific prior written permission.
19 *
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE.
32 *
33 **********
34 *
35 * Program : TINA
36 * File : $Source: /home/tina/cvs/tina-libs/tina/sys/sysMem_icopy.h,v $
37 * Date : $Date: 2003/09/22 16:09:02 $
38 * Version : $Revision: 1.2 $
39 * CVS Id : $Id: sysMem_icopy.h,v 1.2 2003/09/22 16:09:02 tony Exp $
40 *
41 * Notes :
42 *
43 *********
44 */
45
46 #ifndef TINA_SYS_MEM_ICOPY_HDR
47 #define TINA_SYS_MEM_ICOPY_HDR
48
49 #ifdef __cplusplus
50 extern "C" {
51 #endif /* __cplusplus */
52
53
54 int **iupper_dcopy(double **a, int n1, int n2);
55 int **ilower_dcopy(double **a, int m1, int n1, int m2, int n2);
56 int **iarray_dcopy(double **a, int m1, int n1, int m2, int n2);
57 int *ivector_dcopy(double *v, int n1, int n2);
58 int **iupper_fcopy(float **a, int n1, int n2);
59 int **ilower_fcopy(float **a, int m1, int n1, int m2, int n2);
60 int **iarray_fcopy(float **a, int m1, int n1, int m2, int n2);
61 int *ivector_fcopy(float *v, int n1, int n2);
62 int **iupper_icopy(int **a, int n1, int n2);
63 int **ilower_icopy(int **a, int m1, int n1, int m2, int n2);
64 int **iarray_icopy(int **a, int m1, int n1, int m2, int n2);
65 int *ivector_icopy(int *v, int n1, int n2);
66 int **iupper_scopy(short int **a, int n1, int n2);
67 int **ilower_scopy(short int **a, int m1, int n1, int m2, int n2);
68 int **iarray_scopy(short int **a, int m1, int n1, int m2, int n2);
69 int *ivector_scopy(short int *v, int n1, int n2);
70 int **iupper_ccopy(char **a, int n1, int n2);
71 int **ilower_ccopy(char **a, int m1, int n1, int m2, int n2);
72 int **iarray_ccopy(char **a, int m1, int n1, int m2, int n2);
73 int *ivector_ccopy(char *v, int n1, int n2);
74 int **iupper_uccopy(unsigned char **a, int n1, int n2);
75 int **ilower_uccopy(unsigned char **a, int m1, int n1, int m2, int n2);
76 int **iarray_uccopy(unsigned char **a, int m1, int n1, int m2, int n2);
77 int *ivector_uccopy(unsigned char *v, int n1, int n2);
78
79 #ifdef __cplusplus
80 }
81 #endif /* __cplusplus */
82
83 #endif /* TINA_SYS_MEM_ICOPY_HDR */
84
85
86
87
88
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.