DEBSOURCES
Skip Quicknav
sources / cgit / 1.2.3%2Bgit20240802.70.09d24d7%2Bgit2.46.0-1 / git / compat / mkdtemp.c
12345678
#include "../git-compat-util.h" char *gitmkdtemp(char *template) { if (!*mktemp(template) || mkdir(template, 0700)) return NULL; return template; }