资源简介
让你的C缩进风格和Kernel风格变的一样
代码片段和文件信息
#include
#include
#include
int main(int argc char **argv)
{
int i;
char cmd[1024] = “sh /home/.Lindent“;
if (argc < 2) {
printf(“Usage: myindent [file1 file2 ...]\n“);
return -1;
}
for (i = 1; i < argc; i++) {
strcat(cmd “ “);
strcat(cmd argv[i]);
}
//printf(“\n%s\n“ cmd);
if (strlen(cmd) > 1024) {
printf(“Sorry Input too much I can‘t fix so much ... ^_^\n“);
return -1;
}
if (system(cmd) == -1) {
printf(“system() error...\n“);
return -1;
}
return 0;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 549 2011-11-09 08:17 README
文件 529 2011-11-09 08:03 myindent.c
文件 461 2011-11-08 03:09 Lindent
- 上一篇:libharu windows平台
- 下一篇:全国火车站数据
相关资源
-
Microsoft Kernel-Mode Driver fr
amework Inst - Eclipse虚线插件IndentGuide-1.5.0
- Indent Guides V14
- 内核驱动调试工具DebugView(DbgView)
- Linux内核视频教程70G百度网盘资源
- GPIO驱动程序
- 利用核主元分析Kernel principal componen
- KmdMgr内核驱动管理源码(kernel-Mode D
- i2c kernel drivers
- bcmwl-kernel-source_6.30.223.271+bdcom-0ubuntu
- zImage linux kernel 2.6.22.14
- WRK Windows Research Kernel
评论
共有 条评论