gloable.h

来自「jpeg 2000 压缩算法源代码 核心ebcot」· C头文件 代码 · 共 35 行

H
35
字号
#ifndef GLOABLE_H_
#define GLOABLE_H_

#include "math.h"
#include <string.h>
#include "iostream.h"
#include "stdio.h"
#include "stdlib.h"
#include "DataType.h"

#define INT_MAXVALUE (1<<31-1)


extern double log2(double fValue);
extern int ceilfloor(double x);


template <class T>
extern void InitializeArray(T *pArray,int n, T & value)
{

	int i;
	for (i=0;i<n;i++)
		pArray[i]=value;


}



#endif



⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?