Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ShExBy/shex_roo.../usr/include/sys
File: file.h
/* Copyright (C) 1991-2018 Free Software Foundation, Inc.
[0] Fix | Delete
This file is part of the GNU C Library.
[1] Fix | Delete
[2] Fix | Delete
The GNU C Library is free software; you can redistribute it and/or
[3] Fix | Delete
modify it under the terms of the GNU Lesser General Public
[4] Fix | Delete
License as published by the Free Software Foundation; either
[5] Fix | Delete
version 2.1 of the License, or (at your option) any later version.
[6] Fix | Delete
[7] Fix | Delete
The GNU C Library is distributed in the hope that it will be useful,
[8] Fix | Delete
but WITHOUT ANY WARRANTY; without even the implied warranty of
[9] Fix | Delete
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
[10] Fix | Delete
Lesser General Public License for more details.
[11] Fix | Delete
[12] Fix | Delete
You should have received a copy of the GNU Lesser General Public
[13] Fix | Delete
License along with the GNU C Library; if not, see
[14] Fix | Delete
<http://www.gnu.org/licenses/>. */
[15] Fix | Delete
[16] Fix | Delete
#ifndef _SYS_FILE_H
[17] Fix | Delete
#define _SYS_FILE_H 1
[18] Fix | Delete
[19] Fix | Delete
#include <features.h>
[20] Fix | Delete
[21] Fix | Delete
#ifndef _FCNTL_H
[22] Fix | Delete
# include <fcntl.h>
[23] Fix | Delete
#endif
[24] Fix | Delete
[25] Fix | Delete
__BEGIN_DECLS
[26] Fix | Delete
[27] Fix | Delete
[28] Fix | Delete
/* Alternate names for values for the WHENCE argument to `lseek'.
[29] Fix | Delete
These are the same as SEEK_SET, SEEK_CUR, and SEEK_END, respectively. */
[30] Fix | Delete
#ifndef L_SET
[31] Fix | Delete
# define L_SET 0 /* Seek from beginning of file. */
[32] Fix | Delete
# define L_INCR 1 /* Seek from current position. */
[33] Fix | Delete
# define L_XTND 2 /* Seek from end of file. */
[34] Fix | Delete
#endif
[35] Fix | Delete
[36] Fix | Delete
[37] Fix | Delete
/* Operations for the `flock' call. */
[38] Fix | Delete
#define LOCK_SH 1 /* Shared lock. */
[39] Fix | Delete
#define LOCK_EX 2 /* Exclusive lock. */
[40] Fix | Delete
#define LOCK_UN 8 /* Unlock. */
[41] Fix | Delete
[42] Fix | Delete
/* Can be OR'd in to one of the above. */
[43] Fix | Delete
#define LOCK_NB 4 /* Don't block when locking. */
[44] Fix | Delete
[45] Fix | Delete
[46] Fix | Delete
/* Apply or remove an advisory lock, according to OPERATION,
[47] Fix | Delete
on the file FD refers to. */
[48] Fix | Delete
extern int flock (int __fd, int __operation) __THROW;
[49] Fix | Delete
[50] Fix | Delete
[51] Fix | Delete
__END_DECLS
[52] Fix | Delete
[53] Fix | Delete
#endif /* sys/file.h */
[54] Fix | Delete
[55] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function