mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-11 09:26:28 +02:00
Added a /bin/mkdir that makes directories. How very neat :^) There are various limitations because of missing functionality.
13 lines
193 B
C
13 lines
193 B
C
#pragma once
|
|
|
|
#include <sys/cdefs.h>
|
|
#include <sys/types.h>
|
|
|
|
__BEGIN_DECLS
|
|
|
|
mode_t umask(mode_t);
|
|
int chmod(const char* pathname, mode_t);
|
|
int mkdir(const char* pathname, mode_t);
|
|
|
|
__END_DECLS
|