#include <stdio.h>#include <string.h>#include <stdlib.h>#include <sys/types.h>#include <sys/stat.h>#include <fcntl.h>#include <unistd.h>#include <pthread.h>#include "libjio.h"#include "common.h"#include "trans.h"

Go to the source code of this file.
Functions | |
| struct jfs * | jfopen (const char *path, const char *mode) |
| int | jfclose (struct jfs *stream) |
| struct jfs * | jfreopen (const char *path, const char *mode, struct jfs *stream) |
| size_t | jfread (void *ptr, size_t size, size_t nmemb, struct jfs *stream) |
| size_t | jfwrite (const void *ptr, size_t size, size_t nmemb, struct jfs *stream) |
| int | jfileno (struct jfs *stream) |
| int | jfeof (struct jfs *stream) |
| void | jclearerr (struct jfs *stream) |
| int | jferror (struct jfs *stream) |
| int | jfseek (struct jfs *stream, long offset, int whence) |
| long | jftell (struct jfs *stream) |
| void | jrewind (struct jfs *stream) |
| FILE * | jfsopen (struct jfs *stream, const char *mode) |
| struct jfs* jfopen | ( | const char * | path, | |
| const char * | mode | |||
| ) | [read] |
Definition at line 32 of file ansi.c.
Referenced by jfreopen().


| int jfclose | ( | struct jfs * | stream | ) |
Definition at line 73 of file ansi.c.
Referenced by jfreopen().


| size_t jfread | ( | void * | ptr, | |
| size_t | size, | |||
| size_t | nmemb, | |||
| struct jfs * | stream | |||
| ) |
| size_t jfwrite | ( | const void * | ptr, | |
| size_t | size, | |||
| size_t | nmemb, | |||
| struct jfs * | stream | |||
| ) |
| int jfileno | ( | struct jfs * | stream | ) |
| int jfeof | ( | struct jfs * | stream | ) |
1.5.8