8 lines
113 B
C
8 lines
113 B
C
|
|
#ifndef MATALLOC_H_
|
||
|
|
#define MATALLOC_H
|
||
|
|
|
||
|
|
double **dmatalloc(int m, int n);
|
||
|
|
int **imatalloc(int m, int n);
|
||
|
|
|
||
|
|
#endif
|