File: _file.h

package info (click to toggle)
cc65 2.19-2
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 20,268 kB
  • sloc: ansic: 117,151; asm: 66,339; pascal: 4,248; makefile: 1,009; perl: 607
file content (50 lines) | stat: -rw-r--r-- 786 bytes parent folder | download | duplicates (3)
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
44
45
46
47
48
49
50
/*
** _file.h
**
** (C) Copyright 1998, 2002 Ullrich von Bassewitz (uz@cc65.org)
**
*/



#ifndef __FILE_H
#define __FILE_H



#include <stdio.h>



/* Definition of struct _FILE */
struct _FILE {
    char            f_fd;
    char            f_flags;
    unsigned char   f_pushback;
};

/* File table. Beware: FOPEN_MAX is hardcoded in the ASM files! */
extern FILE _filetab[FOPEN_MAX];

/* Flags field */
#define _FCLOSED        0x00
#define _FOPEN          0x01
#define _FEOF           0x02
#define _FERROR         0x04
#define _FPUSHBACK      0x08



FILE* __fastcall__ _fopen (const char* name, const char* mode, FILE* f);
/* Open the specified file and fill the descriptor values into f */

FILE* _fdesc (void);
/* Find a free FILE descriptor */



/* End of _file.h */
#endif