Japanese

C Language / Mini format function

  The following conversion is performed.

Before:

    if(hoge)
    {
        aaa;
    }
    else
    {
        aaa;
    }


After:

    if(hoge) {
        aaa;
    } else {
        aaa;
    }
(*)EE2ECDT is required for this function.

ando@park.ruru.ne.jp