//문자열 "\\" 로 자르기
char *p = strtok("aaa\\aaaa\\aaa", "\\");
char temp[255]={0x00,};
while (p) {
sprintf (temp,"%s", p); //마지막 aaa를 temp 에 저장
p = strtok(NULL, "\\");
}
char *p = strtok("aaa\\aaaa\\aaa", "\\");
char temp[255]={0x00,};
while (p) {
sprintf (temp,"%s", p); //마지막 aaa를 temp 에 저장
p = strtok(NULL, "\\");
}