Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ExeBy/smexe_ro.../usr/include
File: ar.h
/* Header describing `ar' archive file format.
[0] Fix | Delete
Copyright (C) 1996-2018 Free Software Foundation, Inc.
[1] Fix | Delete
This file is part of the GNU C Library.
[2] Fix | Delete
[3] Fix | Delete
The GNU C Library is free software; you can redistribute it and/or
[4] Fix | Delete
modify it under the terms of the GNU Lesser General Public
[5] Fix | Delete
License as published by the Free Software Foundation; either
[6] Fix | Delete
version 2.1 of the License, or (at your option) any later version.
[7] Fix | Delete
[8] Fix | Delete
The GNU C Library is distributed in the hope that it will be useful,
[9] Fix | Delete
but WITHOUT ANY WARRANTY; without even the implied warranty of
[10] Fix | Delete
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
[11] Fix | Delete
Lesser General Public License for more details.
[12] Fix | Delete
[13] Fix | Delete
You should have received a copy of the GNU Lesser General Public
[14] Fix | Delete
License along with the GNU C Library; if not, see
[15] Fix | Delete
<http://www.gnu.org/licenses/>. */
[16] Fix | Delete
[17] Fix | Delete
#ifndef _AR_H
[18] Fix | Delete
#define _AR_H 1
[19] Fix | Delete
[20] Fix | Delete
#include <sys/cdefs.h>
[21] Fix | Delete
[22] Fix | Delete
/* Archive files start with the ARMAG identifying string. Then follows a
[23] Fix | Delete
`struct ar_hdr', and as many bytes of member file data as its `ar_size'
[24] Fix | Delete
member indicates, for each member file. */
[25] Fix | Delete
[26] Fix | Delete
#define ARMAG "!<arch>\n" /* String that begins an archive file. */
[27] Fix | Delete
#define SARMAG 8 /* Size of that string. */
[28] Fix | Delete
[29] Fix | Delete
#define ARFMAG "`\n" /* String in ar_fmag at end of each header. */
[30] Fix | Delete
[31] Fix | Delete
__BEGIN_DECLS
[32] Fix | Delete
[33] Fix | Delete
struct ar_hdr
[34] Fix | Delete
{
[35] Fix | Delete
char ar_name[16]; /* Member file name, sometimes / terminated. */
[36] Fix | Delete
char ar_date[12]; /* File date, decimal seconds since Epoch. */
[37] Fix | Delete
char ar_uid[6], ar_gid[6]; /* User and group IDs, in ASCII decimal. */
[38] Fix | Delete
char ar_mode[8]; /* File mode, in ASCII octal. */
[39] Fix | Delete
char ar_size[10]; /* File size, in ASCII decimal. */
[40] Fix | Delete
char ar_fmag[2]; /* Always contains ARFMAG. */
[41] Fix | Delete
};
[42] Fix | Delete
[43] Fix | Delete
__END_DECLS
[44] Fix | Delete
[45] Fix | Delete
#endif /* ar.h */
[46] Fix | Delete
[47] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function