Programming/C & C++43 STL Sample Codes 예제를 통해 사용방법을 이해해보자. MAP : 2008. 4. 28. Unit Test - C Unit CUnit A unit testing framework for C Anil Kumar Jerry St.Clair http://cunit.sourceforge.net Table of Contents 1. Introduction 1.1. Description 1.2. Structure 1.3. General Usage 1.4. Changes to the CUnit API in Version 2 2. Writing CUnit Tests 2.1. Test Functions 2.2. CUnit Assertions 2.3. Deprecated v1 Assertions 3. The Test Registry 3.1. Synopsis 3.2. Internal Structure 3.3. Initialization 3.4... 2008. 3. 13. [Unix / Linux] 특정 경로의 파일명 얻어오기 [함수설명] 함수의 원형 : DIR *opendir(const char *dirname); 함수의 원형 : struct dirent *readdir(DIR *dirp); 함수의 원형 : int closedir(DIR *dirp); [기본 예제] #include #include #include int main(int argc, char *argv[]) { DIR *p_dir = NULL; struct dirent *p_dir_info; if(argc d_name); } closedir(p_dir); // opendir로 얻은 핸들을 닫는다. } } return 1; } 2008. 1. 21. 데이터형 범위 퍼갈때는 출처를 밝히고 가져가세요. 2008. 1. 19. 이전 1 ··· 6 7 8 9 10 11 다음