diff options
author | Taylor Blau <me@ttaylorr.com> | 2020-04-14 06:04:22 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-04-15 18:20:29 +0200 |
commit | f4781068faafad5e10fb6e8ae312ebd5b0e7bb55 (patch) | |
tree | 69daf700e92b80bf5c12e0690741f8298ef1df15 /oidset.c | |
parent | builtin/commit-graph.c: introduce split strategy 'replace' (diff) | |
download | git-f4781068faafad5e10fb6e8ae312ebd5b0e7bb55.tar.xz git-f4781068faafad5e10fb6e8ae312ebd5b0e7bb55.zip |
oidset: introduce 'oidset_size'
Occasionally, it may be useful for callers to know the number of object
IDs in an oidset. Right now, the only way to compute this is to call
'kh_size' on the internal 'kh_set_oid_t'.
Similar to how we wrap other 'kh_*' functions over the 'oidset' type,
let's allow callers to compute this value by introducing 'oidset_size'.
We will add its first caller in the subsequent commit.
Signed-off-by: Taylor Blau <me@ttaylorr.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'oidset.c')
-rw-r--r-- | oidset.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -36,6 +36,11 @@ void oidset_clear(struct oidset *set) oidset_init(set, 0); } +int oidset_size(struct oidset *set) +{ + return kh_size(&set->set); +} + void oidset_parse_file(struct oidset *set, const char *path) { FILE *fp; |