farg.h
来自「spice中支持多层次元件模型仿真的可单独运行的插件源码」· C头文件 代码 · 共 73 行
H
73 行
/* $Header: /home/harrison/c/tcgmsg/ipcv4.0/RCS/farg.h,v 1.1 91/12/06 17:26:33 harrison Exp Locker: harrison $ *//* This include file defines ARGC_ and ARGV_ which are the appropriate global variables to get at the command argument list in the FORTRAN runtime environment. This will need to be modified for each new machine (try using nm or generating a full load map). *//* Used to be SEQUENT here but charged to _X_argv */#if defined(SUN) || defined(ALLIANT) || defined(ENCORE) || defined(CONVEX) || \ defined(KSR)#define ARGC_ xargc#define ARGV_ xargv#endif#if defined(ARDENT)#define ARGC_ _UT_argc#define ARGV_ _UT_argv#endif#if (defined(SGI) || defined(ULTRIX)) && !defined(DECFORT)#define ARGC_ f77argc#define ARGV_ f77argv#endif#if defined(DECFORT)#define ARGC_ __Argc#define ARGV_ __Argv#endif#if defined(AIX)#define ARGC_ p_xargc#define ARGV_ p_xargv#endif#if defined(CRAY)#define ARGC_ _argc#define ARGV_ _argv#endif#ifdef SEQUENT#define ARGC_ _X_argc#define ARGV_ _X_argv#endif#if defined(NEXT)#define ARGC_ _NXArgc#define ARGV_ _NXArgv#endif#if defined(HPUX)/* ARGC_ and ARGV_ are allocated and constructed in pbeginf */#elseextern int ARGC_;extern char **ARGV_;#endif/* Eample usestatic void PrintCommandArgList(){ int i; for (i=0; i<ARGC_; i++) (void) printf("argv(%d)=%s\n", i, ARGV_[i]);}*/
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?