mirror of
https://github.com/libgit2/libgit2.git
synced 2026-01-25 11:06:32 +00:00
16 lines
388 B
C
16 lines
388 B
C
#include "clar_libgit2.h"
|
|
#include "buffer.h"
|
|
|
|
extern void assert_describe(
|
|
const char *expected_output,
|
|
const char *revparse_spec,
|
|
git_repository *repo,
|
|
git_describe_options *opts,
|
|
git_describe_format_options *fmt_opts);
|
|
|
|
extern void assert_describe_workdir(
|
|
const char *expected_output,
|
|
git_repository *repo,
|
|
git_describe_options *opts,
|
|
git_describe_format_options *fmt_opts);
|