명령어 등등
norminette -R .. errors
mcdn
2020. 7. 4. 15:56
반응형
c3r7s2% norminette -R CheckForbiddenSourceHeader main04.c
Norme: ./main04.c
Error: 42 header not at top of the file
Error: global scope bad aligned
이런식으로 함수 탭을 맞추기
Error (line 1): preprocessor block must be followed by one empty line
#include 선언 뒤에는 한 줄 띄기
Error (line 4): Space before function name
int main(void)할 때
int ' ' main 사이에 스페이스가 아니라 탭이어야 한다.
Error (line 7): spaces at the end of line
어떻게 해결했지..
Error (line 7, col 11): bad character after ;
불필요한 character가 있다는 뜻
반응형