Revision ec583449067bab5b800ecc63926f35c9dae96fa1 authored by Johannes Schindelin on 11 March 2023, 20:29:12 UTC, committed by Johannes Schindelin on 17 April 2023, 19:16:07 UTC
Signed-off-by: Taylor Blau <me@ttaylorr.com>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent c96ecfe
Raw File
test-getcwd.c
#include "test-tool.h"
#include "git-compat-util.h"
#include "parse-options.h"

static const char *getcwd_usage[] = {
	"test-tool getcwd",
	NULL
};

int cmd__getcwd(int argc, const char **argv)
{
	struct option options[] = {
		OPT_END()
	};
	char *cwd;

	argc = parse_options(argc, argv, "test-tools", options, getcwd_usage, 0);
	if (argc > 0)
		usage_with_options(getcwd_usage, options);

	cwd = xgetcwd();
	puts(cwd);
	free(cwd);

	return 0;
}
back to top