Bioplib
Protein Structure C Library
 All Data Structures Files Functions Variables Typedefs Macros Pages
array.h
Go to the documentation of this file.
1 /************************************************************************/
2 /**
3 
4  \file array.h
5 
6  \version V1.8
7  \date 14.08.14
8  \brief Include file for 2D/3D array functions
9 
10  \copyright (c) UCL / Dr. Andrew C. R. Martin 1994-2014
11  \author Dr. Andrew C. R. Martin
12  \par
13  Institute of Structural & Molecular Biology,
14  University College London,
15  Gower Street,
16  London.
17  WC1E 6BT.
18  \par
19  andrew@bioinf.org.uk
20  andrew.martin@ucl.ac.uk
21 
22 **************************************************************************
23 
24  This code is NOT IN THE PUBLIC DOMAIN, but it may be copied
25  according to the conditions laid out in the accompanying file
26  COPYING.DOC.
27 
28  The code may be modified as required, but any modifications must be
29  documented so that the person responsible can be identified.
30 
31  The code may not be sold commercially or included as part of a
32  commercial product except as described in the file COPYING.DOC.
33 
34 **************************************************************************
35 
36  Description:
37  ============
38 
39 
40 **************************************************************************
41 
42  Usage:
43  ======
44 
45 **************************************************************************
46 
47  Revision History:
48  =================
49 - V1.4 18.03.94
50 - V1.5 30.05.02 Added 3D functions
51 - V1.6 07.07.14 Use bl prefix for functions By: CTP
52 - V1.7 31.07.14 Updated deprecation: Removed deprecated.h and added
53  prototypes for renamed functions. By: CTP
54 - V1.8 14.08.14 Moved deprecated function prototypes to deprecated.h
55  By: CTP
56 
57 *************************************************************************/
58 /* Includes
59 */
60 
61 /************************************************************************/
62 /* Defines and macros
63 */
64 
65 /************************************************************************/
66 /* Globals
67 */
68 
69 /************************************************************************/
70 /* Prototypes
71 */
72 
73 /************************************************************************/
74 
75 #ifndef _ARRAY_H
76 #define _ARRAY_H
77 
78 char **blArray2D(int size, int dim1, int dim2);
79 void blFreeArray2D(char **array, int dim1, int dim2);
80 
81 char ***blArray3D(int size, int dim1, int dim2, int dim3);
82 void blFreeArray3D(char ***array, int dim1, int dim2, int dim3);
83 
84 /************************************************************************/
85 /* Include deprecated functions */
86 #define _ARRAY_H_DEPRECATED
87 # include "deprecated.h"
88 /************************************************************************/
89 
90 
91 #endif
Redirect calls to deprecated functions.
char ** blArray2D(int size, int dim1, int dim2)
Definition: array2.c:130
char *** blArray3D(int size, int dim1, int dim2, int dim3)
Definition: array3.c:127
void blFreeArray2D(char **array, int dim1, int dim2)
Definition: array2.c:174
void blFreeArray3D(char ***array, int dim1, int dim2, int dim3)
Definition: array3.c:182