• 大小: 1KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-04
  • 语言: 其他
  • 标签: indent  kernel  

资源简介

让你的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

评论

共有 条评论