주석좀 달아 주세연.....ㅠㅠ
꿈
2023.04.01
int tok(char** argv, char* command) //strtok함수 사용
{
char *tok;
int count = 0;
tok = strtok(command, \n\r\n\t);
while (tok)
{
argv[count] = (char*)malloc(sizeof(char) * 512);
strcpy(argv[count], tok);
tok = strtok(NULL, \n\r\n\t);
count++;
}
return count;
}
인데요..
리눅스상에서 컴파일 되도록 짠껀데 주석좀 달아 주실분....ㅍㅍ
-
흰여울
ㅜ.ㅜ
-
각티슈
짰으면 주석도 달줄 알아야죠 ^^