📄 free_vegcon.c
字号:
#include <stdio.h>#include <stdlib.h>#include <vicNl.h> static char vcid[] = "$Id: free_vegcon.c,v 3.1 1999/02/16 18:02:07 vicadmin Exp $";void free_vegcon(veg_con_struct **veg_con)/********************************************************************** free_vegcon.c Keith Cherkauer September 25, 1998 This subroutine frees all components of the veg_con structure.**********************************************************************/{ int i; for(i=0;i<veg_con[0][0].vegetat_type_num;i++) { free((char *)veg_con[0][i].zone_depth); free((char *)veg_con[0][i].zone_fract); } free((char *)veg_con[0]);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -