DEBSOURCES
Skip Quicknav
sources / git / 1%3A2.1.4-2.1 / compat / mkdtemp.c
12345678
#include "../git-compat-util.h" char *gitmkdtemp(char *template) { if (!*mktemp(template) || mkdir(template, 0700)) return NULL; return template; }