Edit File by line
/home/barbar84/www/wp-conte.../plugins/sujqvwi/ExeBy/exe_root.../usr/include
File: cpio.h
/* Extended cpio format from POSIX.1.
[0] Fix | Delete
This file is part of the GNU C Library.
[1] Fix | Delete
Copyright (C) 1992-2018 Free Software Foundation, Inc.
[2] Fix | Delete
NOTE: The canonical source of this file is maintained with the GNU cpio.
[3] Fix | Delete
[4] Fix | Delete
The GNU C Library is free software; you can redistribute it and/or
[5] Fix | Delete
modify it under the terms of the GNU Lesser General Public
[6] Fix | Delete
License as published by the Free Software Foundation; either
[7] Fix | Delete
version 2.1 of the License, or (at your option) any later version.
[8] Fix | Delete
[9] Fix | Delete
The GNU C Library is distributed in the hope that it will be useful,
[10] Fix | Delete
but WITHOUT ANY WARRANTY; without even the implied warranty of
[11] Fix | Delete
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
[12] Fix | Delete
Lesser General Public License for more details.
[13] Fix | Delete
[14] Fix | Delete
You should have received a copy of the GNU Lesser General Public
[15] Fix | Delete
License along with the GNU C Library; if not, see
[16] Fix | Delete
<http://www.gnu.org/licenses/>. */
[17] Fix | Delete
[18] Fix | Delete
#ifndef _CPIO_H
[19] Fix | Delete
#define _CPIO_H 1
[20] Fix | Delete
[21] Fix | Delete
/* A cpio archive consists of a sequence of files.
[22] Fix | Delete
Each file has a 76 byte header,
[23] Fix | Delete
a variable length, NUL terminated filename,
[24] Fix | Delete
and variable length file data.
[25] Fix | Delete
A header for a filename "TRAILER!!!" indicates the end of the archive. */
[26] Fix | Delete
[27] Fix | Delete
/* All the fields in the header are ISO 646 (approximately ASCII) strings
[28] Fix | Delete
of octal numbers, left padded, not NUL terminated.
[29] Fix | Delete
[30] Fix | Delete
Field Name Length in Bytes Notes
[31] Fix | Delete
c_magic 6 must be "070707"
[32] Fix | Delete
c_dev 6
[33] Fix | Delete
c_ino 6
[34] Fix | Delete
c_mode 6 see below for value
[35] Fix | Delete
c_uid 6
[36] Fix | Delete
c_gid 6
[37] Fix | Delete
c_nlink 6
[38] Fix | Delete
c_rdev 6 only valid for chr and blk special files
[39] Fix | Delete
c_mtime 11
[40] Fix | Delete
c_namesize 6 count includes terminating NUL in pathname
[41] Fix | Delete
c_filesize 11 must be 0 for FIFOs and directories */
[42] Fix | Delete
[43] Fix | Delete
/* Value for the field `c_magic'. */
[44] Fix | Delete
#define MAGIC "070707"
[45] Fix | Delete
[46] Fix | Delete
/* Values for c_mode, OR'd together: */
[47] Fix | Delete
[48] Fix | Delete
#define C_IRUSR 000400
[49] Fix | Delete
#define C_IWUSR 000200
[50] Fix | Delete
#define C_IXUSR 000100
[51] Fix | Delete
#define C_IRGRP 000040
[52] Fix | Delete
#define C_IWGRP 000020
[53] Fix | Delete
#define C_IXGRP 000010
[54] Fix | Delete
#define C_IROTH 000004
[55] Fix | Delete
#define C_IWOTH 000002
[56] Fix | Delete
#define C_IXOTH 000001
[57] Fix | Delete
[58] Fix | Delete
#define C_ISUID 004000
[59] Fix | Delete
#define C_ISGID 002000
[60] Fix | Delete
#define C_ISVTX 001000
[61] Fix | Delete
[62] Fix | Delete
#define C_ISBLK 060000
[63] Fix | Delete
#define C_ISCHR 020000
[64] Fix | Delete
#define C_ISDIR 040000
[65] Fix | Delete
#define C_ISFIFO 010000
[66] Fix | Delete
#define C_ISSOCK 0140000
[67] Fix | Delete
#define C_ISLNK 0120000
[68] Fix | Delete
#define C_ISCTG 0110000
[69] Fix | Delete
#define C_ISREG 0100000
[70] Fix | Delete
[71] Fix | Delete
#endif /* cpio.h */
[72] Fix | Delete
[73] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function