mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-29 11:16:07 +00:00
13 lines
250 B
C
13 lines
250 B
C
|
|
#include "clang-c/Index.h"
|
|
|
|
/*
|
|
* First sign of life:-)
|
|
*/
|
|
int main(int argc, char **argv) {
|
|
CXIndex Idx = clang_createIndex();
|
|
CXTranslationUnit TU = clang_createTranslationUnit(Idx, argv[1]);
|
|
clang_loadTranslationUnit(TU, 0);
|
|
return 1;
|
|
}
|