/** * \brief Get the number of CompileCommand we have for a file */ func (cmds CompileCommands) GetSize() int { return int(C.clang_CompileCommands_getSize(cmds.c)) }
// Get the number of CompileCommand we have for a file func (cc CompileCommands) Size() uint32 { return uint32(C.clang_CompileCommands_getSize(cc.c)) }