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

📄 ex_proto.pl

📁 用于求解大型稀疏线性方程组Ax=b的数值计算库.
💻 PL
字号:
#!/bin/csh#-----------------------------------------------#          file:  ex_proto.pl ##   Extract prototypes of void functions from #   C source files in argument list.  Write#   these prototypes to standard out.##   8/7/96  -- KAR #-----------------------------------------------awk 'BEGIN  {  iflag = 0 }/void/ {  		 iflag = 1                 val = $0                 next; }/\)/ {                            if ( iflag )                 {                   val = val "\n" $0 ";"                   printf("%s\n\n", val)                   iflag = 0                   next                 }                 else                  {                   next                 }    }    {            if ( iflag )                 {                   val = val "\n" $0                   next                 }                 else                    next    }' $*

⌨️ 快捷键说明

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