public class FilePtr
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
static int |
SEEK_CUR |
static int |
SEEK_END |
static int |
SEEK_SET |
Modifier | Constructor and Description |
---|---|
protected |
FilePtr() |
Modifier and Type | Method and Description |
---|---|
void |
fclose() |
int |
fgetc() |
static FilePtr |
fopen(java.lang.String name,
java.lang.String modes) |
void |
fputc(char ch) |
void |
fseek_cur(int offset) |
void |
fseek_end(int offset) |
void |
fseek_set(int offset) |
void |
fseek(int offset,
int whence) |
int |
ftell() |
static void |
main(java.lang.String[] args) |
int |
nextToken() |
int |
prevToken() |
public static final int SEEK_SET
public static final int SEEK_CUR
public static final int SEEK_END
public static FilePtr fopen(java.lang.String name, java.lang.String modes)
public void fclose()
public void fputc(char ch)
public int fgetc()
public int ftell()
public void fseek_set(int offset)
public void fseek_cur(int offset)
public void fseek_end(int offset)
public void fseek(int offset, int whence)
public int nextToken()
public int prevToken()
public static void main(java.lang.String[] args)