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

📄 env.h

📁 fortran并行计算包
💻 H
字号:
/* -*- Mode: C; c-basic-offset:4 ; -*- *//*   *  (C) 2004 by Argonne National Laboratory. *      See COPYRIGHT in top-level directory. */#ifndef ENV_H_INCLUDED#define ENV_H_INCLUDED/* Element of the list of environment variables */typedef struct EnvData {    const char *name, *value;    const char *envvalue;     /* name=value form, for putenv */    struct EnvData *nextData;} EnvData;typedef struct EnvInfo {    int includeAll;      /* true if all environment variables should be 			    included, false if none (other than those			    explicitly listed below) should be included */    EnvData *envPairs;   /* List of name,value pairs to be included */    EnvData *envNames;   /* List of names to be included, using the 			    current value in the environment */} EnvInfo;int MPIE_ArgsCheckForEnv( int, char *[], ProcessWorld *, EnvInfo ** );int MPIE_EnvSetup( ProcessState *, char *[], char *[], int );int MPIE_EnvInitData( EnvData *, int );int MPIE_Putenv( ProcessWorld *, char * );int MPIE_UnsetAllEnv( char *[] );#endif

⌨️ 快捷键说明

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