summaryrefslogtreecommitdiff
path: root/src/user/lib/include/unistd.h
blob: 8c0eab08116c28553e51a79dc0e96e0a2c1f199d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#pragma once
#include <camellia/types.h> // TODO only needed because of hid_t
#include <sys/types.h>
#include <getopt.h>

// TODO custom stdint.h, ssize_t doesn't belong here
typedef long long ssize_t;

int fork(void);
int close(hid_t h);
_Noreturn void _exit(int);

ssize_t readlink(const char *restrict path, char *restrict buf, size_t bufsize);
int link(const char *path1, const char *path2);
int unlink(const char *path);
int symlink(const char *path1, const char *path2);
int isatty(int fd);

int execv(const char *path, char *const argv[]);

int chdir(const char *path);
char *getcwd(char *buf, size_t size);

uid_t getuid(void);
int chown(const char *path, uid_t owner, gid_t group);


/* Converts a relative path to an absolute one, simplifying it if possible.
 * If in == NULL - return the length of cwd. Doesn't include the trailing slash,
 *                 except for the root dir. Includes the null byte.
 * If size isn't enough to fit the path, returns the amount of bytes needed to fit
 * it, including the null byte.
 *
 * Note that some errors are only detected if *out != NULL, so you must check the return
 * value twice.
 * @return 0 on failure, length of the path otherwise */
size_t absolutepath(char *out, const char *in, size_t size);

// TODO put in an internal libc header
void __setinitialcwd(const char *c);

void intr_set(void (*fn)(void));
void intr_default(void);