|
|
1.1 root 1: /***
2: *io.h - declarations for low-level file handling and I/O functions
3: *
4: * Copyright (c) 1985-1990, Microsoft Corporation. All rights reserved.
5: *
6: *Purpose:
7: * This file contains the function declarations for the low-level
8: * file handling and I/O functions.
9: *
10: ****/
11:
12:
13: /* function prototypes */
14:
15: int _cdecl access(const char *, int);
16: int _cdecl chmod(const char *, int);
17: int _cdecl chsize(int, long);
18: int _cdecl close(int);
19: int _cdecl creat(const char *, int);
20: int _cdecl dup(int);
21: int _cdecl dup2(int, int);
22: int _cdecl eof(int);
23: long _cdecl filelength(int);
24: int _cdecl isatty(int);
25: int _cdecl locking(int, int, long);
26: long _cdecl lseek(int, long, int);
27: char * _cdecl mktemp(char *);
28: int _cdecl open(const char *, int, ...);
29: int _cdecl _pipe(int *, unsigned int, int);
30: int _cdecl read(int, void *, unsigned int);
31: int _cdecl remove(const char *);
32: int _cdecl rename(const char *, const char *);
33: int _cdecl setmode(int, int);
34: int _cdecl sopen(const char *, int, int, ...);
35: long _cdecl tell(int);
36: int _cdecl umask(int);
37: int _cdecl unlink(const char *);
38: int _cdecl write(int, const void *, unsigned int);
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.