X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=website%2Farchive%2Fbinaries%2Fmac%2Fsrc%2Fmafft%2Fcore%2Fmtxutl.h;fp=website%2Farchive%2Fbinaries%2Fmac%2Fsrc%2Fmafft%2Fcore%2Fmtxutl.h;h=dd31321f80e08ae9994c15f4e0370add6755c464;hb=dbde3fb6f00b9bb770343631a517c0e599db8528;hp=0000000000000000000000000000000000000000;hpb=85f830bbd51a7277994bd4233141016304e210c9;p=jabaws.git diff --git a/website/archive/binaries/mac/src/mafft/core/mtxutl.h b/website/archive/binaries/mac/src/mafft/core/mtxutl.h new file mode 100644 index 0000000..dd31321 --- /dev/null +++ b/website/archive/binaries/mac/src/mafft/core/mtxutl.h @@ -0,0 +1,50 @@ +void MtxuntDouble( double **, int ); +void MtxmltDouble( double **, double **, int ); + +char *AllocateCharVec( int ); +void FreeCharVec( char * ); + +char **AllocateCharMtx( int, int); +void ReallocateCharMtx( char **, int, int); +void FreeCharMtx( char ** ); + +float *AllocateFloatVec( int ); +void FreeFloatVec( float * ); + +float **AllocateFloatHalfMtx( int ); +float **AllocateFloatMtx( int, int ); +void FreeFloatHalfMtx( float **, int ); +void FreeFloatMtx( float ** ); + +float **AlocateFloatTri( int ); +void FreeFloatTri( float ** ); + +int *AllocateIntVec( int ); +void FreeIntVec( int * ); + +int **AllocateIntMtx( int, int ); +void FreeIntMtx( int ** ); + +char ***AllocateCharCub( int, int, int ); +void FreeCharCub( char *** ); + +int ***AllocateIntCub( int, int, int ); +void FreeIntCub( int *** ); + +double *AllocateDoubleVec( int ); +void FreeDoubleVec( double * ); + +double **AllocateDoubleMtx( int, int ); +void FreeDoubleMtx( double ** ); + +double ***AllocateDoubleCub( int, int, int ); +void FreeDoubleCub( double *** ); + +float ***AllocateFloatCub( int, int, int ); +void FreeFloatCub( float *** ); + +short *AllocateShortVec( int ); +void FreeShortVec( short * ); + +short **AllocateShortMtx( int, int ); +void FreeShortMtx( short ** );