2013年1月11日金曜日

[astyle]indent オプション

Example: 整形前
int main(void)
{
int i;
printf("hello, world ");
for (i = 0; i < 10; i++) {
printf("%d \n", i);
}
return 0;
}
オプションなし
オプションなしは indent はスペースで埋められる
Example: オプションなし
int main(void)
{
    int i;
    printf("hello, world ");
    for (i = 0; i < 10; i++) {
        printf("%d \n", i);
    }
    return 0;
}
--indent=tab
--indent=tab は indent は TAB で埋められる
Example: --indent=tab
int main(void)
{
 int i;
 printf("hello, world ");
 for (i = 0; i < 10; i++) {
  printf("%d \n", i);
 }
 return 0;
}

0 件のコメント:

コメントを投稿