freestor.h
来自「不错的国外的有限元程序代码,附带详细的manual,可以节省很多的底层工作.」· C头文件 代码 · 共 23 行
H
23 行
// ********************************************
// *** DYNAMIC MEMORY ALLOCATION PROCEDURES ***
// ********************************************
#ifndef freestor_h
/*
This file does not define a class. Rather, it provides a few procedures
related with dynamic memory allocation.
*/
double* allocDouble (int) ;
int* allocInt (int) ;
void freeStoreError () ;
void freeInt (int*) ;
void freeDouble (double*) ;
#define freestor_h
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?