for Robot Artificial Inteligence

C파일에 구현된 함수를 C++에 사용하는 방법

|

cpp파일에서 c파일에 구현 되어있는 함수를 call 하는 방법은 c파일에 구현되어 있는 함수의 정의가 적혀있는 header파일을

#ifndef _FILENAME_H_
#define _FILENAME_H_

#ifdef __cplusplus
extern "C"{
#endif
...
#ifdef __cplusplus

}
#endif
#endif /* _FILENAME_H_ */

위와 같이 extern “C{}”로 감싸면 해결된다.

Comments