view src/lib/safe-mkdir.h @ 9451:9fff30644260 HEAD

istream-concat: Fixed a lot of bugs.
author Timo Sirainen <tss@iki.fi>
date Mon, 26 Oct 2009 17:06:57 -0400
parents e4eb71ae8e96
children
line wrap: on
line source

#ifndef SAFE_MKDIR_H
#define SAFE_MKDIR_H

/* Either create a directory or make sure that it already exists with given
   permissions. If anything fails, the i_fatal() is called. Returns 1 if
   directory was created, 2 if it already existed with correct permissions,
   0 if we changed permissions. */
int safe_mkdir(const char *dir, mode_t mode, uid_t uid, gid_t gid);

#endif