Hello all!
Is there a way I can determine with libclang, whether a function is declared
as 'func()' or 'func(void)'?
Thank you!
Hello all!
Is there a way I can determine with libclang, whether a function is declared
as 'func()' or 'func(void)'?
Thank you!
Assuming this is for C code, clang_isFunctionTypeVariadic will be true for
the CXType of the former but not the latter.
-Joe