> For the complete documentation index, see [llms.txt](https://hezhiqiang.gitbook.io/linux/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hezhiqiang.gitbook.io/linux/ming-ling/protoize.md).

# protoize

GNU-C代码转换为ANSI-C代码

## 补充说明

**protoize命令** 属于gcc套件，用于为C语言源代码文件添加函数原型，将GNU-C代码转换为ANSI-C代码。

### 语法

```
protoize(选项)(参数)
```

### 选项

```
-d：设置需要转换代码的目录；
-x：转换代码时排除的文件。
```

### 参数

文件：需要转换代码的C语言源文件。
