clang API Documentation
00001 //==--- InterCheckerAPI.h ---------------------------------------*- C++ -*-==// 00002 // 00003 // The LLVM Compiler Infrastructure 00004 // 00005 // This file is distributed under the University of Illinois Open Source 00006 // License. See LICENSE.TXT for details. 00007 // 00008 //===----------------------------------------------------------------------===// 00009 // This file allows introduction of checker dependencies. It contains APIs for 00010 // inter-checker communications. 00011 //===----------------------------------------------------------------------===// 00012 00013 #ifndef LLVM_CLANG_LIB_STATICANALYZER_CHECKERS_INTERCHECKERAPI_H 00014 #define LLVM_CLANG_LIB_STATICANALYZER_CHECKERS_INTERCHECKERAPI_H 00015 namespace clang { 00016 namespace ento { 00017 00018 /// Register the checker which evaluates CString API calls. 00019 void registerCStringCheckerBasic(CheckerManager &Mgr); 00020 00021 }} 00022 #endif /* INTERCHECKERAPI_H_ */