2008-01-28 16:37:16 -05:00
|
|
|
/* source: filan.h */
|
2008-02-11 15:54:01 -05:00
|
|
|
/* Copyright Gerhard Rieger 2001-2008 */
|
2008-01-27 07:00:08 -05:00
|
|
|
|
|
|
|
/* Published under the GNU General Public License V.2, see file COPYING */
|
|
|
|
|
|
|
|
#ifndef __filan_h_included
|
|
|
|
#define __filan_h_included 1
|
|
|
|
|
|
|
|
struct sockaddr; /* prevent gcc from spitting silly warning */
|
|
|
|
struct sockaddr_un; /* prevent gcc from spitting silly warning */
|
|
|
|
struct sockaddr_in; /* prevent gcc from spitting silly warning */
|
|
|
|
struct sockaddr_in6; /* prevent gcc from spitting silly warning */
|
|
|
|
|
|
|
|
extern bool filan_followsymlinks;
|
|
|
|
extern bool filan_rawoutput;
|
|
|
|
|
|
|
|
extern int filan_file(const char *filename, FILE *outfile);
|
|
|
|
extern int filan_fd(int fd, FILE *outfile);
|
|
|
|
extern int filan_stat(
|
|
|
|
#if HAVE_STAT64
|
|
|
|
struct stat64 *buf
|
|
|
|
#else
|
|
|
|
struct stat *buf
|
|
|
|
#endif /* !HAVE_STAT64 */
|
|
|
|
, int statfd, int dynfd, FILE *outfile);
|
|
|
|
|
|
|
|
extern int cdevan(int fd, FILE *outfile);
|
|
|
|
|
2008-08-17 17:28:11 -04:00
|
|
|
#if _WITH_SOCKET
|
2008-01-27 07:00:08 -05:00
|
|
|
extern int isasocket(int fd);
|
|
|
|
extern int sockan(int fd, FILE *outfile);
|
|
|
|
extern int ipan(int fd, FILE *outfile);
|
|
|
|
extern int ip6an(int fd, FILE *outfile);
|
2008-08-17 17:28:11 -04:00
|
|
|
#endif /* _WITH_SOCKET */
|
2008-01-27 07:00:08 -05:00
|
|
|
|
2008-02-11 15:54:01 -05:00
|
|
|
extern
|
|
|
|
int fdname(const char *file, int fd, FILE *outfile, const char *numform);
|
2008-01-27 07:00:08 -05:00
|
|
|
|
|
|
|
#endif /* !defined(__filan_h_included) */
|