Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ExeBy/smexe_ro.../usr/include
File: aliases.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 _ALIASES_H
[17] Fix | Delete
#define _ALIASES_H 1
[18] Fix | Delete
[19] Fix | Delete
#include <features.h>
[20] Fix | Delete
[21] Fix | Delete
#include <sys/types.h>
[22] Fix | Delete
[23] Fix | Delete
[24] Fix | Delete
__BEGIN_DECLS
[25] Fix | Delete
[26] Fix | Delete
/* Structure to represent one entry of the alias data base. */
[27] Fix | Delete
struct aliasent
[28] Fix | Delete
{
[29] Fix | Delete
char *alias_name;
[30] Fix | Delete
size_t alias_members_len;
[31] Fix | Delete
char **alias_members;
[32] Fix | Delete
int alias_local;
[33] Fix | Delete
};
[34] Fix | Delete
[35] Fix | Delete
[36] Fix | Delete
/* Open alias data base files. */
[37] Fix | Delete
extern void setaliasent (void) __THROW;
[38] Fix | Delete
[39] Fix | Delete
/* Close alias data base files. */
[40] Fix | Delete
extern void endaliasent (void) __THROW;
[41] Fix | Delete
[42] Fix | Delete
/* Get the next entry from the alias data base. */
[43] Fix | Delete
extern struct aliasent *getaliasent (void) __THROW;
[44] Fix | Delete
[45] Fix | Delete
/* Get the next entry from the alias data base and put it in RESULT_BUF. */
[46] Fix | Delete
extern int getaliasent_r (struct aliasent *__restrict __result_buf,
[47] Fix | Delete
char *__restrict __buffer, size_t __buflen,
[48] Fix | Delete
struct aliasent **__restrict __result) __THROW;
[49] Fix | Delete
[50] Fix | Delete
/* Get alias entry corresponding to NAME. */
[51] Fix | Delete
extern struct aliasent *getaliasbyname (const char *__name) __THROW;
[52] Fix | Delete
[53] Fix | Delete
/* Get alias entry corresponding to NAME and put it in RESULT_BUF. */
[54] Fix | Delete
extern int getaliasbyname_r (const char *__restrict __name,
[55] Fix | Delete
struct aliasent *__restrict __result_buf,
[56] Fix | Delete
char *__restrict __buffer, size_t __buflen,
[57] Fix | Delete
struct aliasent **__restrict __result) __THROW;
[58] Fix | Delete
[59] Fix | Delete
__END_DECLS
[60] Fix | Delete
[61] Fix | Delete
#endif /* aliases.h */
[62] Fix | Delete
[63] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function