1234287Sdim//==--- InterCheckerAPI.h ---------------------------------------*- C++ -*-==//
2234287Sdim//
3234287Sdim//                     The LLVM Compiler Infrastructure
4234287Sdim//
5234287Sdim// This file is distributed under the University of Illinois Open Source
6234287Sdim// License. See LICENSE.TXT for details.
7234287Sdim//
8234287Sdim//===----------------------------------------------------------------------===//
9234287Sdim// This file allows introduction of checker dependencies. It contains APIs for
10234287Sdim// inter-checker communications.
11234287Sdim//===----------------------------------------------------------------------===//
12234287Sdim
13234287Sdim#ifndef INTERCHECKERAPI_H_
14234287Sdim#define INTERCHECKERAPI_H_
15234287Sdimnamespace clang {
16234287Sdimnamespace ento {
17234287Sdim
18234287Sdim/// Register the checker which evaluates CString API calls.
19234287Sdimvoid registerCStringCheckerBasic(CheckerManager &Mgr);
20234287Sdim
21234287Sdim}}
22234287Sdim#endif /* INTERCHECKERAPI_H_ */
23