1 2 3 4 5 6 7 8 9 10 11 12 13
/* * Copyright (C) NGINX, Inc. */ #ifndef _NXT_FS_H_INCLUDED_ #define _NXT_FS_H_INCLUDED_ nxt_int_t nxt_fs_mkdir_p_dirname(const u_char *path, mode_t mode); nxt_int_t nxt_fs_mkdir_p(const u_char *dir, mode_t mode); #endif /* _NXT_FS_H_INCLUDED_ */