1998-01-16 15:13:05 +03:00
|
|
|
#ifndef _FILE_H_
|
|
|
|
#define _FILE_H_
|
2020-04-10 08:11:40 +03:00
|
|
|
/* This is file FILE.H */
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
2000-02-17 10:11:22 +03:00
|
|
|
#ifndef L_SET
|
|
|
|
# define L_SET 0 /* seek from beginning. */
|
|
|
|
# define L_CURR 1 /* seek from current position. */
|
|
|
|
# define L_INCR 1 /* ditto. */
|
|
|
|
# define L_XTND 2 /* seek from end. */
|
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2000-02-18 09:59:36 +03:00
|
|
|
#ifndef R_OK
|
|
|
|
# define R_OK 4 /* test whether readable. */
|
|
|
|
# define W_OK 2 /* test whether writable. */
|
2013-05-19 07:10:21 +04:00
|
|
|
# define X_OK 1 /* test whether executable. */
|
2000-02-18 09:59:36 +03:00
|
|
|
# define F_OK 0 /* test whether exist. */
|
2000-02-17 10:11:22 +03:00
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
#endif
|