Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/AnonR/smanonr..../opt/imh-pyth.../include/git2
File: status.h
/*
[0] Fix | Delete
* Copyright (C) the libgit2 contributors. All rights reserved.
[1] Fix | Delete
*
[2] Fix | Delete
* This file is part of libgit2, distributed under the GNU GPL v2 with
[3] Fix | Delete
* a Linking Exception. For full terms see the included COPYING file.
[4] Fix | Delete
*/
[5] Fix | Delete
#ifndef INCLUDE_git_status_h__
[6] Fix | Delete
#define INCLUDE_git_status_h__
[7] Fix | Delete
[8] Fix | Delete
#include "common.h"
[9] Fix | Delete
#include "types.h"
[10] Fix | Delete
#include "strarray.h"
[11] Fix | Delete
#include "diff.h"
[12] Fix | Delete
[13] Fix | Delete
/**
[14] Fix | Delete
* @file git2/status.h
[15] Fix | Delete
* @brief Git file status routines
[16] Fix | Delete
* @defgroup git_status Git file status routines
[17] Fix | Delete
* @ingroup Git
[18] Fix | Delete
* @{
[19] Fix | Delete
*/
[20] Fix | Delete
GIT_BEGIN_DECL
[21] Fix | Delete
[22] Fix | Delete
/**
[23] Fix | Delete
* Status flags for a single file.
[24] Fix | Delete
*
[25] Fix | Delete
* A combination of these values will be returned to indicate the status of
[26] Fix | Delete
* a file. Status compares the working directory, the index, and the
[27] Fix | Delete
* current HEAD of the repository. The `GIT_STATUS_INDEX` set of flags
[28] Fix | Delete
* represents the status of file in the index relative to the HEAD, and the
[29] Fix | Delete
* `GIT_STATUS_WT` set of flags represent the status of the file in the
[30] Fix | Delete
* working directory relative to the index.
[31] Fix | Delete
*/
[32] Fix | Delete
typedef enum {
[33] Fix | Delete
GIT_STATUS_CURRENT = 0,
[34] Fix | Delete
[35] Fix | Delete
GIT_STATUS_INDEX_NEW = (1u << 0),
[36] Fix | Delete
GIT_STATUS_INDEX_MODIFIED = (1u << 1),
[37] Fix | Delete
GIT_STATUS_INDEX_DELETED = (1u << 2),
[38] Fix | Delete
GIT_STATUS_INDEX_RENAMED = (1u << 3),
[39] Fix | Delete
GIT_STATUS_INDEX_TYPECHANGE = (1u << 4),
[40] Fix | Delete
[41] Fix | Delete
GIT_STATUS_WT_NEW = (1u << 7),
[42] Fix | Delete
GIT_STATUS_WT_MODIFIED = (1u << 8),
[43] Fix | Delete
GIT_STATUS_WT_DELETED = (1u << 9),
[44] Fix | Delete
GIT_STATUS_WT_TYPECHANGE = (1u << 10),
[45] Fix | Delete
GIT_STATUS_WT_RENAMED = (1u << 11),
[46] Fix | Delete
GIT_STATUS_WT_UNREADABLE = (1u << 12),
[47] Fix | Delete
[48] Fix | Delete
GIT_STATUS_IGNORED = (1u << 14),
[49] Fix | Delete
GIT_STATUS_CONFLICTED = (1u << 15),
[50] Fix | Delete
} git_status_t;
[51] Fix | Delete
[52] Fix | Delete
/**
[53] Fix | Delete
* Function pointer to receive status on individual files
[54] Fix | Delete
*
[55] Fix | Delete
* `path` is the relative path to the file from the root of the repository.
[56] Fix | Delete
*
[57] Fix | Delete
* `status_flags` is a combination of `git_status_t` values that apply.
[58] Fix | Delete
*
[59] Fix | Delete
* `payload` is the value you passed to the foreach function as payload.
[60] Fix | Delete
*/
[61] Fix | Delete
typedef int GIT_CALLBACK(git_status_cb)(
[62] Fix | Delete
const char *path, unsigned int status_flags, void *payload);
[63] Fix | Delete
[64] Fix | Delete
/**
[65] Fix | Delete
* Select the files on which to report status.
[66] Fix | Delete
*
[67] Fix | Delete
* With `git_status_foreach_ext`, this will control which changes get
[68] Fix | Delete
* callbacks. With `git_status_list_new`, these will control which
[69] Fix | Delete
* changes are included in the list.
[70] Fix | Delete
*
[71] Fix | Delete
* - GIT_STATUS_SHOW_INDEX_AND_WORKDIR is the default. This roughly
[72] Fix | Delete
* matches `git status --porcelain` regarding which files are
[73] Fix | Delete
* included and in what order.
[74] Fix | Delete
* - GIT_STATUS_SHOW_INDEX_ONLY only gives status based on HEAD to index
[75] Fix | Delete
* comparison, not looking at working directory changes.
[76] Fix | Delete
* - GIT_STATUS_SHOW_WORKDIR_ONLY only gives status based on index to
[77] Fix | Delete
* working directory comparison, not comparing the index to the HEAD.
[78] Fix | Delete
*/
[79] Fix | Delete
typedef enum {
[80] Fix | Delete
GIT_STATUS_SHOW_INDEX_AND_WORKDIR = 0,
[81] Fix | Delete
GIT_STATUS_SHOW_INDEX_ONLY = 1,
[82] Fix | Delete
GIT_STATUS_SHOW_WORKDIR_ONLY = 2,
[83] Fix | Delete
} git_status_show_t;
[84] Fix | Delete
[85] Fix | Delete
/**
[86] Fix | Delete
* Flags to control status callbacks
[87] Fix | Delete
*
[88] Fix | Delete
* - GIT_STATUS_OPT_INCLUDE_UNTRACKED says that callbacks should be made
[89] Fix | Delete
* on untracked files. These will only be made if the workdir files are
[90] Fix | Delete
* included in the status "show" option.
[91] Fix | Delete
* - GIT_STATUS_OPT_INCLUDE_IGNORED says that ignored files get callbacks.
[92] Fix | Delete
* Again, these callbacks will only be made if the workdir files are
[93] Fix | Delete
* included in the status "show" option.
[94] Fix | Delete
* - GIT_STATUS_OPT_INCLUDE_UNMODIFIED indicates that callback should be
[95] Fix | Delete
* made even on unmodified files.
[96] Fix | Delete
* - GIT_STATUS_OPT_EXCLUDE_SUBMODULES indicates that submodules should be
[97] Fix | Delete
* skipped. This only applies if there are no pending typechanges to
[98] Fix | Delete
* the submodule (either from or to another type).
[99] Fix | Delete
* - GIT_STATUS_OPT_RECURSE_UNTRACKED_DIRS indicates that all files in
[100] Fix | Delete
* untracked directories should be included. Normally if an entire
[101] Fix | Delete
* directory is new, then just the top-level directory is included (with
[102] Fix | Delete
* a trailing slash on the entry name). This flag says to include all
[103] Fix | Delete
* of the individual files in the directory instead.
[104] Fix | Delete
* - GIT_STATUS_OPT_DISABLE_PATHSPEC_MATCH indicates that the given path
[105] Fix | Delete
* should be treated as a literal path, and not as a pathspec pattern.
[106] Fix | Delete
* - GIT_STATUS_OPT_RECURSE_IGNORED_DIRS indicates that the contents of
[107] Fix | Delete
* ignored directories should be included in the status. This is like
[108] Fix | Delete
* doing `git ls-files -o -i --exclude-standard` with core git.
[109] Fix | Delete
* - GIT_STATUS_OPT_RENAMES_HEAD_TO_INDEX indicates that rename detection
[110] Fix | Delete
* should be processed between the head and the index and enables
[111] Fix | Delete
* the GIT_STATUS_INDEX_RENAMED as a possible status flag.
[112] Fix | Delete
* - GIT_STATUS_OPT_RENAMES_INDEX_TO_WORKDIR indicates that rename
[113] Fix | Delete
* detection should be run between the index and the working directory
[114] Fix | Delete
* and enabled GIT_STATUS_WT_RENAMED as a possible status flag.
[115] Fix | Delete
* - GIT_STATUS_OPT_SORT_CASE_SENSITIVELY overrides the native case
[116] Fix | Delete
* sensitivity for the file system and forces the output to be in
[117] Fix | Delete
* case-sensitive order
[118] Fix | Delete
* - GIT_STATUS_OPT_SORT_CASE_INSENSITIVELY overrides the native case
[119] Fix | Delete
* sensitivity for the file system and forces the output to be in
[120] Fix | Delete
* case-insensitive order
[121] Fix | Delete
* - GIT_STATUS_OPT_RENAMES_FROM_REWRITES indicates that rename detection
[122] Fix | Delete
* should include rewritten files
[123] Fix | Delete
* - GIT_STATUS_OPT_NO_REFRESH bypasses the default status behavior of
[124] Fix | Delete
* doing a "soft" index reload (i.e. reloading the index data if the
[125] Fix | Delete
* file on disk has been modified outside libgit2).
[126] Fix | Delete
* - GIT_STATUS_OPT_UPDATE_INDEX tells libgit2 to refresh the stat cache
[127] Fix | Delete
* in the index for files that are unchanged but have out of date stat
[128] Fix | Delete
* information in the index. It will result in less work being done on
[129] Fix | Delete
* subsequent calls to get status. This is mutually exclusive with the
[130] Fix | Delete
* NO_REFRESH option.
[131] Fix | Delete
*
[132] Fix | Delete
* Calling `git_status_foreach()` is like calling the extended version
[133] Fix | Delete
* with: GIT_STATUS_OPT_INCLUDE_IGNORED, GIT_STATUS_OPT_INCLUDE_UNTRACKED,
[134] Fix | Delete
* and GIT_STATUS_OPT_RECURSE_UNTRACKED_DIRS. Those options are bundled
[135] Fix | Delete
* together as `GIT_STATUS_OPT_DEFAULTS` if you want them as a baseline.
[136] Fix | Delete
*/
[137] Fix | Delete
typedef enum {
[138] Fix | Delete
GIT_STATUS_OPT_INCLUDE_UNTRACKED = (1u << 0),
[139] Fix | Delete
GIT_STATUS_OPT_INCLUDE_IGNORED = (1u << 1),
[140] Fix | Delete
GIT_STATUS_OPT_INCLUDE_UNMODIFIED = (1u << 2),
[141] Fix | Delete
GIT_STATUS_OPT_EXCLUDE_SUBMODULES = (1u << 3),
[142] Fix | Delete
GIT_STATUS_OPT_RECURSE_UNTRACKED_DIRS = (1u << 4),
[143] Fix | Delete
GIT_STATUS_OPT_DISABLE_PATHSPEC_MATCH = (1u << 5),
[144] Fix | Delete
GIT_STATUS_OPT_RECURSE_IGNORED_DIRS = (1u << 6),
[145] Fix | Delete
GIT_STATUS_OPT_RENAMES_HEAD_TO_INDEX = (1u << 7),
[146] Fix | Delete
GIT_STATUS_OPT_RENAMES_INDEX_TO_WORKDIR = (1u << 8),
[147] Fix | Delete
GIT_STATUS_OPT_SORT_CASE_SENSITIVELY = (1u << 9),
[148] Fix | Delete
GIT_STATUS_OPT_SORT_CASE_INSENSITIVELY = (1u << 10),
[149] Fix | Delete
GIT_STATUS_OPT_RENAMES_FROM_REWRITES = (1u << 11),
[150] Fix | Delete
GIT_STATUS_OPT_NO_REFRESH = (1u << 12),
[151] Fix | Delete
GIT_STATUS_OPT_UPDATE_INDEX = (1u << 13),
[152] Fix | Delete
GIT_STATUS_OPT_INCLUDE_UNREADABLE = (1u << 14),
[153] Fix | Delete
GIT_STATUS_OPT_INCLUDE_UNREADABLE_AS_UNTRACKED = (1u << 15),
[154] Fix | Delete
} git_status_opt_t;
[155] Fix | Delete
[156] Fix | Delete
#define GIT_STATUS_OPT_DEFAULTS \
[157] Fix | Delete
(GIT_STATUS_OPT_INCLUDE_IGNORED | \
[158] Fix | Delete
GIT_STATUS_OPT_INCLUDE_UNTRACKED | \
[159] Fix | Delete
GIT_STATUS_OPT_RECURSE_UNTRACKED_DIRS)
[160] Fix | Delete
[161] Fix | Delete
/**
[162] Fix | Delete
* Options to control how `git_status_foreach_ext()` will issue callbacks.
[163] Fix | Delete
*
[164] Fix | Delete
* Initialize with `GIT_STATUS_OPTIONS_INIT`. Alternatively, you can
[165] Fix | Delete
* use `git_status_options_init`.
[166] Fix | Delete
*
[167] Fix | Delete
*/
[168] Fix | Delete
typedef struct {
[169] Fix | Delete
unsigned int version; /**< The version */
[170] Fix | Delete
[171] Fix | Delete
/**
[172] Fix | Delete
* The `show` value is one of the `git_status_show_t` constants that
[173] Fix | Delete
* control which files to scan and in what order.
[174] Fix | Delete
*/
[175] Fix | Delete
git_status_show_t show;
[176] Fix | Delete
[177] Fix | Delete
/**
[178] Fix | Delete
* The `flags` value is an OR'ed combination of the `git_status_opt_t`
[179] Fix | Delete
* values above.
[180] Fix | Delete
*/
[181] Fix | Delete
unsigned int flags;
[182] Fix | Delete
[183] Fix | Delete
/**
[184] Fix | Delete
* The `pathspec` is an array of path patterns to match (using
[185] Fix | Delete
* fnmatch-style matching), or just an array of paths to match exactly if
[186] Fix | Delete
* `GIT_STATUS_OPT_DISABLE_PATHSPEC_MATCH` is specified in the flags.
[187] Fix | Delete
*/
[188] Fix | Delete
git_strarray pathspec;
[189] Fix | Delete
[190] Fix | Delete
/**
[191] Fix | Delete
* The `baseline` is the tree to be used for comparison to the working directory
[192] Fix | Delete
* and index; defaults to HEAD.
[193] Fix | Delete
*/
[194] Fix | Delete
git_tree *baseline;
[195] Fix | Delete
} git_status_options;
[196] Fix | Delete
[197] Fix | Delete
#define GIT_STATUS_OPTIONS_VERSION 1
[198] Fix | Delete
#define GIT_STATUS_OPTIONS_INIT {GIT_STATUS_OPTIONS_VERSION}
[199] Fix | Delete
[200] Fix | Delete
/**
[201] Fix | Delete
* Initialize git_status_options structure
[202] Fix | Delete
*
[203] Fix | Delete
* Initializes a `git_status_options` with default values. Equivalent to
[204] Fix | Delete
* creating an instance with `GIT_STATUS_OPTIONS_INIT`.
[205] Fix | Delete
*
[206] Fix | Delete
* @param opts The `git_status_options` struct to initialize.
[207] Fix | Delete
* @param version The struct version; pass `GIT_STATUS_OPTIONS_VERSION`.
[208] Fix | Delete
* @return Zero on success; -1 on failure.
[209] Fix | Delete
*/
[210] Fix | Delete
GIT_EXTERN(int) git_status_options_init(
[211] Fix | Delete
git_status_options *opts,
[212] Fix | Delete
unsigned int version);
[213] Fix | Delete
[214] Fix | Delete
/**
[215] Fix | Delete
* A status entry, providing the differences between the file as it exists
[216] Fix | Delete
* in HEAD and the index, and providing the differences between the index
[217] Fix | Delete
* and the working directory.
[218] Fix | Delete
*
[219] Fix | Delete
* The `status` value provides the status flags for this file.
[220] Fix | Delete
*
[221] Fix | Delete
* The `head_to_index` value provides detailed information about the
[222] Fix | Delete
* differences between the file in HEAD and the file in the index.
[223] Fix | Delete
*
[224] Fix | Delete
* The `index_to_workdir` value provides detailed information about the
[225] Fix | Delete
* differences between the file in the index and the file in the
[226] Fix | Delete
* working directory.
[227] Fix | Delete
*/
[228] Fix | Delete
typedef struct {
[229] Fix | Delete
git_status_t status;
[230] Fix | Delete
git_diff_delta *head_to_index;
[231] Fix | Delete
git_diff_delta *index_to_workdir;
[232] Fix | Delete
} git_status_entry;
[233] Fix | Delete
[234] Fix | Delete
[235] Fix | Delete
/**
[236] Fix | Delete
* Gather file statuses and run a callback for each one.
[237] Fix | Delete
*
[238] Fix | Delete
* The callback is passed the path of the file, the status (a combination of
[239] Fix | Delete
* the `git_status_t` values above) and the `payload` data pointer passed
[240] Fix | Delete
* into this function.
[241] Fix | Delete
*
[242] Fix | Delete
* If the callback returns a non-zero value, this function will stop looping
[243] Fix | Delete
* and return that value to caller.
[244] Fix | Delete
*
[245] Fix | Delete
* @param repo A repository object
[246] Fix | Delete
* @param callback The function to call on each file
[247] Fix | Delete
* @param payload Pointer to pass through to callback function
[248] Fix | Delete
* @return 0 on success, non-zero callback return value, or error code
[249] Fix | Delete
*/
[250] Fix | Delete
GIT_EXTERN(int) git_status_foreach(
[251] Fix | Delete
git_repository *repo,
[252] Fix | Delete
git_status_cb callback,
[253] Fix | Delete
void *payload);
[254] Fix | Delete
[255] Fix | Delete
/**
[256] Fix | Delete
* Gather file status information and run callbacks as requested.
[257] Fix | Delete
*
[258] Fix | Delete
* This is an extended version of the `git_status_foreach()` API that
[259] Fix | Delete
* allows for more granular control over which paths will be processed and
[260] Fix | Delete
* in what order. See the `git_status_options` structure for details
[261] Fix | Delete
* about the additional controls that this makes available.
[262] Fix | Delete
*
[263] Fix | Delete
* Note that if a `pathspec` is given in the `git_status_options` to filter
[264] Fix | Delete
* the status, then the results from rename detection (if you enable it) may
[265] Fix | Delete
* not be accurate. To do rename detection properly, this must be called
[266] Fix | Delete
* with no `pathspec` so that all files can be considered.
[267] Fix | Delete
*
[268] Fix | Delete
* @param repo Repository object
[269] Fix | Delete
* @param opts Status options structure
[270] Fix | Delete
* @param callback The function to call on each file
[271] Fix | Delete
* @param payload Pointer to pass through to callback function
[272] Fix | Delete
* @return 0 on success, non-zero callback return value, or error code
[273] Fix | Delete
*/
[274] Fix | Delete
GIT_EXTERN(int) git_status_foreach_ext(
[275] Fix | Delete
git_repository *repo,
[276] Fix | Delete
const git_status_options *opts,
[277] Fix | Delete
git_status_cb callback,
[278] Fix | Delete
void *payload);
[279] Fix | Delete
[280] Fix | Delete
/**
[281] Fix | Delete
* Get file status for a single file.
[282] Fix | Delete
*
[283] Fix | Delete
* This tries to get status for the filename that you give. If no files
[284] Fix | Delete
* match that name (in either the HEAD, index, or working directory), this
[285] Fix | Delete
* returns GIT_ENOTFOUND.
[286] Fix | Delete
*
[287] Fix | Delete
* If the name matches multiple files (for example, if the `path` names a
[288] Fix | Delete
* directory or if running on a case- insensitive filesystem and yet the
[289] Fix | Delete
* HEAD has two entries that both match the path), then this returns
[290] Fix | Delete
* GIT_EAMBIGUOUS because it cannot give correct results.
[291] Fix | Delete
*
[292] Fix | Delete
* This does not do any sort of rename detection. Renames require a set of
[293] Fix | Delete
* targets and because of the path filtering, there is not enough
[294] Fix | Delete
* information to check renames correctly. To check file status with rename
[295] Fix | Delete
* detection, there is no choice but to do a full `git_status_list_new` and
[296] Fix | Delete
* scan through looking for the path that you are interested in.
[297] Fix | Delete
*
[298] Fix | Delete
* @param status_flags Output combination of git_status_t values for file
[299] Fix | Delete
* @param repo A repository object
[300] Fix | Delete
* @param path The exact path to retrieve status for relative to the
[301] Fix | Delete
* repository working directory
[302] Fix | Delete
* @return 0 on success, GIT_ENOTFOUND if the file is not found in the HEAD,
[303] Fix | Delete
* index, and work tree, GIT_EAMBIGUOUS if `path` matches multiple files
[304] Fix | Delete
* or if it refers to a folder, and -1 on other errors.
[305] Fix | Delete
*/
[306] Fix | Delete
GIT_EXTERN(int) git_status_file(
[307] Fix | Delete
unsigned int *status_flags,
[308] Fix | Delete
git_repository *repo,
[309] Fix | Delete
const char *path);
[310] Fix | Delete
[311] Fix | Delete
/**
[312] Fix | Delete
* Gather file status information and populate the `git_status_list`.
[313] Fix | Delete
*
[314] Fix | Delete
* Note that if a `pathspec` is given in the `git_status_options` to filter
[315] Fix | Delete
* the status, then the results from rename detection (if you enable it) may
[316] Fix | Delete
* not be accurate. To do rename detection properly, this must be called
[317] Fix | Delete
* with no `pathspec` so that all files can be considered.
[318] Fix | Delete
*
[319] Fix | Delete
* @param out Pointer to store the status results in
[320] Fix | Delete
* @param repo Repository object
[321] Fix | Delete
* @param opts Status options structure
[322] Fix | Delete
* @return 0 on success or error code
[323] Fix | Delete
*/
[324] Fix | Delete
GIT_EXTERN(int) git_status_list_new(
[325] Fix | Delete
git_status_list **out,
[326] Fix | Delete
git_repository *repo,
[327] Fix | Delete
const git_status_options *opts);
[328] Fix | Delete
[329] Fix | Delete
/**
[330] Fix | Delete
* Gets the count of status entries in this list.
[331] Fix | Delete
*
[332] Fix | Delete
* If there are no changes in status (at least according the options given
[333] Fix | Delete
* when the status list was created), this can return 0.
[334] Fix | Delete
*
[335] Fix | Delete
* @param statuslist Existing status list object
[336] Fix | Delete
* @return the number of status entries
[337] Fix | Delete
*/
[338] Fix | Delete
GIT_EXTERN(size_t) git_status_list_entrycount(
[339] Fix | Delete
git_status_list *statuslist);
[340] Fix | Delete
[341] Fix | Delete
/**
[342] Fix | Delete
* Get a pointer to one of the entries in the status list.
[343] Fix | Delete
*
[344] Fix | Delete
* The entry is not modifiable and should not be freed.
[345] Fix | Delete
*
[346] Fix | Delete
* @param statuslist Existing status list object
[347] Fix | Delete
* @param idx Position of the entry
[348] Fix | Delete
* @return Pointer to the entry; NULL if out of bounds
[349] Fix | Delete
*/
[350] Fix | Delete
GIT_EXTERN(const git_status_entry *) git_status_byindex(
[351] Fix | Delete
git_status_list *statuslist,
[352] Fix | Delete
size_t idx);
[353] Fix | Delete
[354] Fix | Delete
/**
[355] Fix | Delete
* Free an existing status list
[356] Fix | Delete
*
[357] Fix | Delete
* @param statuslist Existing status list object
[358] Fix | Delete
*/
[359] Fix | Delete
GIT_EXTERN(void) git_status_list_free(
[360] Fix | Delete
git_status_list *statuslist);
[361] Fix | Delete
[362] Fix | Delete
/**
[363] Fix | Delete
* Test if the ignore rules apply to a given file.
[364] Fix | Delete
*
[365] Fix | Delete
* This function checks the ignore rules to see if they would apply to the
[366] Fix | Delete
* given file. This indicates if the file would be ignored regardless of
[367] Fix | Delete
* whether the file is already in the index or committed to the repository.
[368] Fix | Delete
*
[369] Fix | Delete
* One way to think of this is if you were to do "git add ." on the
[370] Fix | Delete
* directory containing the file, would it be added or not?
[371] Fix | Delete
*
[372] Fix | Delete
* @param ignored Boolean returning 0 if the file is not ignored, 1 if it is
[373] Fix | Delete
* @param repo A repository object
[374] Fix | Delete
* @param path The file to check ignores for, rooted at the repo's workdir.
[375] Fix | Delete
* @return 0 if ignore rules could be processed for the file (regardless
[376] Fix | Delete
* of whether it exists or not), or an error < 0 if they could not.
[377] Fix | Delete
*/
[378] Fix | Delete
GIT_EXTERN(int) git_status_should_ignore(
[379] Fix | Delete
int *ignored,
[380] Fix | Delete
git_repository *repo,
[381] Fix | Delete
const char *path);
[382] Fix | Delete
[383] Fix | Delete
/** @} */
[384] Fix | Delete
GIT_END_DECL
[385] Fix | Delete
#endif
[386] Fix | Delete
[387] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function