c/clang: castdump

This commit is contained in:
xushiwei
2024-07-15 01:07:26 +08:00
parent cbe190fa70
commit 0b0cecc2a9
5 changed files with 55 additions and 7 deletions

View File

@@ -0,0 +1,7 @@
#include <stdio.h>
#include <clang-c/Index.h>
int main() {
printf("sizeof(clang.Cursor) = %lu\n", sizeof(CXCursor));
return 0;
}