📄 freestor.h
字号:
// ********************************************
// *** 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -