mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 21:08:12 +00:00

Added a /bin/mkdir that makes directories. How very neat :^) There are various limitations because of missing functionality.
12 lines
193 B
C
12 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
|