⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 check_files.c

📁 超强的大尺度水文模拟工具
💻 C
字号:
#include <stdio.h>#include <stdlib.h>#include <vicNl.h>static char vcid[] = "$Id: check_files.c,v 4.1.2.1 2004/06/17 21:47:46 tbohn Exp $";void check_files(infiles_struct   *infp, 		 filenames_struct *fnames)/**********************************************************************	check_files		Dag Lohmann		January 1996  This routine opens files for soil, vegetation, and global parameters.  Modifications:  16-Jun-04 Added logic to count number of fields in first line of	    soil file.  If there are 54 fields, assume that the	    final field is avgJulyAirTemp, and set JULY_TAVG_SUPPLIED	    to TRUE.						TJB**********************************************************************/{  extern option_struct  options;  extern FILE          *open_file(char string[], char type[]);  int in_word = 0;  int num_words = 0;  int nextchar;  infp->soilparam   = open_file(fnames->soil, "r");  if (!options.ARC_SOIL) {    /* count number of fields in first line of file */    while ( (nextchar = fgetc(infp->soilparam)) != EOF      && (char)nextchar != '\n' ) {      if ((char)nextchar != ' ' && (char)nextchar != '\t') {        if (!in_word) {          /* we've reached the beginning of a word */          in_word = 1;          num_words++;        }      }      else {        if (in_word) {          /* we've reached the beginning of whitespace */          in_word = 0;        }      }    }    if (num_words == 54) {      options.JULY_TAVG_SUPPLIED = TRUE;    }    /* rewind file back to beginning */    fseek(infp->soilparam, 0, 0);  }  infp->veglib      = open_file(fnames->veglib, "r");  infp->vegparam    = open_file(fnames->veg, "r");  if(options.SNOW_BAND>1)    infp->snowband    = open_file(fnames->snow_band, "r");}

⌨️ 快捷键说明

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