brintos

brintos / llvm-project-archived public Read only

0
0
Text · 2.1 KiB · ce1b055 Raw
64 lines · c
1/*===-- clang-c/Rewrite.h - C CXRewriter   --------------------------*- C -*-===*\2|*                                                                            *|3|* Part of the LLVM Project, under the Apache License v2.0 with LLVM          *|4|* Exceptions.                                                                *|5|* See https://llvm.org/LICENSE.txt for license information.                  *|6|* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception                    *|7|*                                                                            *|8|*===----------------------------------------------------------------------===*/9 10#ifndef LLVM_CLANG_C_REWRITE_H11#define LLVM_CLANG_C_REWRITE_H12 13#include "clang-c/CXString.h"14#include "clang-c/ExternC.h"15#include "clang-c/Index.h"16#include "clang-c/Platform.h"17 18LLVM_CLANG_C_EXTERN_C_BEGIN19 20typedef void *CXRewriter;21 22/**23 * Create CXRewriter.24 */25CINDEX_LINKAGE CXRewriter clang_CXRewriter_create(CXTranslationUnit TU);26 27/**28 * Insert the specified string at the specified location in the original buffer.29 */30CINDEX_LINKAGE void clang_CXRewriter_insertTextBefore(CXRewriter Rew, CXSourceLocation Loc,31                                           const char *Insert);32 33/**34 * Replace the specified range of characters in the input with the specified35 * replacement.36 */37CINDEX_LINKAGE void clang_CXRewriter_replaceText(CXRewriter Rew, CXSourceRange ToBeReplaced,38                                      const char *Replacement);39 40/**41 * Remove the specified range.42 */43CINDEX_LINKAGE void clang_CXRewriter_removeText(CXRewriter Rew, CXSourceRange ToBeRemoved);44 45/**46 * Save all changed files to disk.47 * Returns 1 if any files were not saved successfully, returns 0 otherwise.48 */49CINDEX_LINKAGE int clang_CXRewriter_overwriteChangedFiles(CXRewriter Rew);50 51/**52 * Write out rewritten version of the main file to stdout.53 */54CINDEX_LINKAGE void clang_CXRewriter_writeMainFileToStdOut(CXRewriter Rew);55 56/**57 * Free the given CXRewriter.58 */59CINDEX_LINKAGE void clang_CXRewriter_dispose(CXRewriter Rew);60 61LLVM_CLANG_C_EXTERN_C_END62 63#endif64