mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-30 21:28:40 +00: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
|