File: realpath.h

package info (click to toggle)
fdclone 3.01j-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,804 kB
  • sloc: ansic: 100,952; makefile: 4,507; sh: 2,230; sed: 232
file content (15 lines) | stat: -rw-r--r-- 329 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 *	realpath.h
 *
 *	definitions & function prototype declarations for "realpath.c"
 */

#define	RLP_READLINK		0001
#define	RLP_PSEUDOPATH		0002

extern char *Xrealpath __P_((CONST char *, char *, int));
#ifndef	NOSYMLINK
extern char *symrealpath __P_((CONST char *, CONST char *, char *, int));
#endif

extern int norealpath;