BarryServer : Git

All the code for all my projects
// BarryServer : Git / Nucleus / blob / 18495cfe1cf5f7fc6f6b0c8c12d7f34dfded1be0 / include / sys / fs.h

// Related

Nucleus

Barry System headers (remove libc dependency) 18495cf (3 years, 2 months ago)
#ifndef _SYS_FS_H
#define _SYS_FS_H

#include <stddef.h>

#ifdef __cplusplus
extern "C" {
#endif

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

#ifdef __cplusplus
}
#endif

#endif