Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git_config_number.cocci « coccinelle « contrib - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7b57dceefe60efe7ab0beaff7d407436781391d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
@@
identifier C1, C2, C3;
@@
(
(
git_config_int
|
git_config_int64
|
git_config_ulong
|
git_config_ssize_t
)
  (C1, C2
+ , ctx->kvi
  )
|
(
git_configset_get_value
|
git_config_bool_or_int
)
  (C1, C2
+ , ctx->kvi
 , C3
  )
)