Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93501650
al_sq_int.c
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Nov 29, 06:35
Size
1 KB
Mime Type
text/x-c
Expires
Sun, Dec 1, 06:35 (1 d, 21 h)
Engine
blob
Format
Raw Data
Handle
22645934
Attached To
R1448 Lenstool-HPC
al_sq_int.c
View Options
/**********************************************************/
/* */
/* FUNCTION: alloc_square_int */
/* */
/* PURPOSE: Allocates a square of int in memory */
/* */
/* INPUT: nbr_lin = number of lines */
/* nbr_col = number of columns */
/* */
/* RETURN: square = pointer to matrix of pointers */
/* (NULL if memory allocation failure) */
/* */
/* VERSION: 1.1 March 1992 */
/* */
/* AUTHOR: Karim BOUYOUCEF */
/* */
/**********************************************************/
#include <stdlib.h>
#include "lt.h"
/**********************************************************/
int **alloc_square_int(int nbr_lin,int nbr_col)
{
auto int **square;
register int i, j;
square = (int **) malloc((unsigned) nbr_lin*sizeof(int *));
if (square != 0)
{
for (i=0; i<nbr_lin; i++)
{
square[i] = (int *)malloc((unsigned) nbr_col*sizeof(int));
if (square[i] == 0) square = 0;
}
}
for (i=0; i<nbr_lin; i++)
for (j=0; j<nbr_col; j++)
square[i][j]=0;
return(square);
}
Event Timeline
Log In to Comment