t / helper / test-mktemp.con commit Merge branch 'nd/worktree-move' (03f78e1)
   1/*
   2 * test-mktemp.c: code to exercise the creation of temporary files
   3 */
   4#include "test-tool.h"
   5#include "git-compat-util.h"
   6
   7int cmd__mktemp(int argc, const char **argv)
   8{
   9        if (argc != 2)
  10                usage("Expected 1 parameter defining the temporary file template");
  11
  12        xmkstemp(xstrdup(argv[1]));
  13
  14        return 0;
  15}