|
static int | mount (const char *fstype, BlockDevice *bdev, const void *data) |
| Siehe man 2 mount.
|
|
static int | umount () |
| Siehe man 2 umount.
|
|
static void | sync () |
| Schreibt Änderungen im Puffer auf die Festplatte. Siehe man 2 sync.
|
|
static int | open (const char *pathname, int flags) |
| Öffnet und erstellt (je nach flags) Dateien. Siehe man 2 open.
|
|
static int | close (int fd) |
| Schließt einen Dateideskriptor. Siehe man 2 close.
|
|
static ssize_t | read (int fd, void *buf, size_t count) |
| Lesen von einem Dateideskriptor fd in Speicher buf der Länge count . Siehe man 2 read.
|
|
static ssize_t | write (int fd, const void *buf, size_t count) |
| Schreiben von Daten aus Speicher buf der Länge count an Dateideskriptor fd . Siehe man 2 write.
|
|
static off_t | lseek (int fd, off_t offset, int whence) |
| Ändert den aktuellen offset für Dateideskriptor fd . Siehe man 2 lseek.
|
|
static int | truncate (const char *path, off_t length) |
| Setzt die Länge der Datei an path auf length . Siehe man 2 truncate.
|
|
static int | ftruncate (int fd, off_t length) |
| Kürzt Datei für Dateideskriptor fd auf Länge length . Siehe man 2 ftruncate.
|
|
static int | link (const char *oldpath, const char *newpath) |
| Neuer Name newpath für Datei oldpath . Siehe man 2 link.
|
|
static int | symlink (const char *target, const char *linkpath) |
| Erstellt einen symbolischen Verweis mit Inhalt target. Siehe man 2 symlink.
|
|
static int | unlink (const char *pathname) |
| Löscht Namen und bei keinem verbleibenden Verweis mehr die Datei pathname . Siehe man 2 unlink.
|
|
static int | rmdir (const char *pathname) |
| Löscht Verzeichnis pathname . Siehe man 2 rmdir.
|
|
static int | rename (const char *oldpath, const char *newpath) |
| Verschieben von Dateien/Verzeichnissen. Siehe man 2 rename.
|
|
static int | stat (const char *pathname, struct stat *statbuf) |
| Liefert Dateistatus für pathname . Siehe man 2 stat.
|
|
static int | lstat (const char *pathname, struct stat *statbuf) |
| Liefert Dateistatus für pathname . Siehe man 2 lstat.
|
|
static int | fstat (int fd, struct stat *statbuf) |
| Liefert Dateistatus für Dateideskriptor fd . Siehe man 2 fstat.
|
|
static ssize_t | readlink (const char *pathname, char *buf, size_t bufsiz) |
| Liest den Inhalt eines symbolischen Verweises. Siehe man 2 readlink.
|
|
static int | getdents (int fd, Dirent *dirp, int count) |
| Liefert Verzeichniseinträge. Siehe man 2 getdents.
|
|
static DIR * | opendir (const char *name) |
| Öffnet ein Verzeichnis name . Siehe man 3 opendir.
|
|
static struct Dirent * | readdir (DIR *dirp) |
| Liest einen Verzeichniseintrag. Siehe man 3 readdir.
|
|
static void | rewinddir (DIR *dirp) |
| Setzt die Position im Verzeichnis zurück. Siehe man 3 rewinddir.
|
|
static int | closedir (DIR *dirp) |
| Schließt ein Verzeichnis. Siehe man 3 closedir.
|
|
static int | mkdir (const char *pathname) |
| Erstellt Verzeichnis pathname . Siehe man 2 mkdir.
|
|
static int | chdir (const char *path) |
| Wechselt in Verzeichnis path . Siehe man 2 chdir.
|
|
static int | fchdir (int fd) |
| Wechselt in Verzeichnis fd . Siehe man 2 fchdir.
|
|
static int | mount (const char *fstype, BlockDevice *bdev, const void *data) |
| Siehe man 2 mount.
|
|
static int | umount () |
| Siehe man 2 umount.
|
|
static void | sync () |
| Schreibt Änderungen im Puffer auf die Festplatte. Siehe man 2 sync.
|
|
static int | open (const char *pathname, int flags) |
| Öffnet und erstellt (je nach flags) Dateien. Siehe man 2 open.
|
|
static int | close (int fd) |
| Schließt einen Dateideskriptor. Siehe man 2 close.
|
|
static ssize_t | read (int fd, void *buf, size_t count) |
| Lesen von einem Dateideskriptor fd in Speicher buf der Länge count . Siehe man 2 read.
|
|
static ssize_t | write (int fd, const void *buf, size_t count) |
| Schreiben von Daten aus Speicher buf der Länge count an Dateideskriptor fd . Siehe man 2 write.
|
|
static off_t | lseek (int fd, off_t offset, int whence) |
| Ändert den aktuellen offset für Dateideskriptor fd . Siehe man 2 lseek.
|
|
static int | truncate (const char *path, off_t length) |
| Setzt die Länge der Datei an path auf length . Siehe man 2 truncate.
|
|
static int | ftruncate (int fd, off_t length) |
| Kürzt Datei für Dateideskriptor fd auf Länge length . Siehe man 2 ftruncate.
|
|
static int | link (const char *oldpath, const char *newpath) |
| Neuer Name newpath für Datei oldpath . Siehe man 2 link.
|
|
static int | symlink (const char *target, const char *linkpath) |
| Erstellt einen symbolischen Verweis mit Inhalt target. Siehe man 2 symlink.
|
|
static int | unlink (const char *pathname) |
| Löscht Namen und bei keinem verbleibenden Verweis mehr die Datei pathname . Siehe man 2 unlink.
|
|
static int | rmdir (const char *pathname) |
| Löscht Verzeichnis pathname . Siehe man 2 rmdir.
|
|
static int | rename (const char *oldpath, const char *newpath) |
| Verschieben von Dateien/Verzeichnissen. Siehe man 2 rename.
|
|
static int | stat (const char *pathname, struct stat *statbuf) |
| Liefert Dateistatus für pathname . Siehe man 2 stat.
|
|
static int | lstat (const char *pathname, struct stat *statbuf) |
| Liefert Dateistatus für pathname . Siehe man 2 lstat.
|
|
static int | fstat (int fd, struct stat *statbuf) |
| Liefert Dateistatus für Dateideskriptor fd . Siehe man 2 fstat.
|
|
static ssize_t | readlink (const char *pathname, char *buf, size_t bufsiz) |
| Liest den Inhalt eines symbolischen Verweises. Siehe man 2 readlink.
|
|
static int | getdents (int fd, Dirent *dirp, int count) |
| Liefert Verzeichniseinträge. Siehe man 2 getdents.
|
|
static DIR * | opendir (const char *name) |
| Öffnet ein Verzeichnis name . Siehe man 3 opendir.
|
|
static struct Dirent * | readdir (DIR *dirp) |
| Liest einen Verzeichniseintrag. Siehe man 3 readdir.
|
|
static void | rewinddir (DIR *dirp) |
| Setzt die Position im Verzeichnis zurück. Siehe man 3 rewinddir.
|
|
static int | closedir (DIR *dirp) |
| Schließt ein Verzeichnis. Siehe man 3 closedir.
|
|
static int | mkdir (const char *pathname) |
| Erstellt Verzeichnis pathname . Siehe man 2 mkdir.
|
|
static int | chdir (const char *path) |
| Wechselt in Verzeichnis path . Siehe man 2 chdir.
|
|
static int | fchdir (int fd) |
| Wechselt in Verzeichnis fd . Siehe man 2 fchdir.
|
|