Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ShExBy/shex_roo.../usr/include/bits
File: dirent.h
/* Copyright (C) 1996-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 _DIRENT_H
[17] Fix | Delete
# error "Never use <bits/dirent.h> directly; include <dirent.h> instead."
[18] Fix | Delete
#endif
[19] Fix | Delete
[20] Fix | Delete
struct dirent
[21] Fix | Delete
{
[22] Fix | Delete
#ifndef __USE_FILE_OFFSET64
[23] Fix | Delete
__ino_t d_ino;
[24] Fix | Delete
__off_t d_off;
[25] Fix | Delete
#else
[26] Fix | Delete
__ino64_t d_ino;
[27] Fix | Delete
__off64_t d_off;
[28] Fix | Delete
#endif
[29] Fix | Delete
unsigned short int d_reclen;
[30] Fix | Delete
unsigned char d_type;
[31] Fix | Delete
char d_name[256]; /* We must not include limits.h! */
[32] Fix | Delete
};
[33] Fix | Delete
[34] Fix | Delete
#ifdef __USE_LARGEFILE64
[35] Fix | Delete
struct dirent64
[36] Fix | Delete
{
[37] Fix | Delete
__ino64_t d_ino;
[38] Fix | Delete
__off64_t d_off;
[39] Fix | Delete
unsigned short int d_reclen;
[40] Fix | Delete
unsigned char d_type;
[41] Fix | Delete
char d_name[256]; /* We must not include limits.h! */
[42] Fix | Delete
};
[43] Fix | Delete
#endif
[44] Fix | Delete
[45] Fix | Delete
#define d_fileno d_ino /* Backwards compatibility. */
[46] Fix | Delete
[47] Fix | Delete
#undef _DIRENT_HAVE_D_NAMLEN
[48] Fix | Delete
#define _DIRENT_HAVE_D_RECLEN
[49] Fix | Delete
#define _DIRENT_HAVE_D_OFF
[50] Fix | Delete
#define _DIRENT_HAVE_D_TYPE
[51] Fix | Delete
[52] Fix | Delete
#if defined __OFF_T_MATCHES_OFF64_T && defined __INO_T_MATCHES_INO64_T
[53] Fix | Delete
/* Inform libc code that these two types are effectively identical. */
[54] Fix | Delete
# define _DIRENT_MATCHES_DIRENT64 1
[55] Fix | Delete
#else
[56] Fix | Delete
# define _DIRENT_MATCHES_DIRENT64 0
[57] Fix | Delete
#endif
[58] Fix | Delete
[59] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function