스폰서
            
    char    tmp_str[MAX_PATH];
    strcpy(tmp_str, szFontName);

    // 확장자 제거   
    char*    pExt = strrchr(tmp_str, '.');
    if (pExt) *pExt = '\0';

'study > c/c++' 카테고리의 다른 글

시간 복잡도  (0) 2012.02.06
힙/스택  (0) 2010.03.02
union  (0) 2010.03.01


확장자 제거 :: 2010. 6. 25. 09:25 study/c/c++
openclose