summaryrefslogtreecommitdiffstats
path: root/include/sys/pathname.h
blob: ffdf585b8940ad13ff1278be4bee29179af2a30f (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef _SPL_PATHNAME_H
#define _SPL_PATHNAME_H

typedef struct pathname {
	char	*pn_buf;		/* underlying storage */
	char	*pn_path;		/* remaining pathname */
	size_t	pn_pathlen;		/* remaining length */
	size_t	pn_bufsize;		/* total size of pn_buf */
} pathname_t;

#endif /* SPL_PATHNAME_H */