1 /*	$NetBSD: fsspace.h,v 1.1.1.1 2009/06/23 10:09:00 tron Exp $	*/
2 
3 #ifndef _FSSPACE_H_INCLUDED_
4 #define _FSSPACE_H_INCLUDED_
5 
6 /*++
7 /* NAME
8 /*	fsspace 3h
9 /* SUMMARY
10 /*	determine available file system space
11 /* SYNOPSIS
12 /*	#include <fsspace.h>
13 /* DESCRIPTION
14 /* .nf
15 
16  /* External interface. */
17 struct fsspace {
18     unsigned long block_size;		/* block size */
19     unsigned long block_free;		/* free space */
20 };
21 
22 extern void fsspace(const char *, struct fsspace *);
23 
24 /* LICENSE
25 /* .ad
26 /* .fi
27 /*	The Secure Mailer license must be distributed with this software.
28 /* AUTHOR(S)
29 /*	Wietse Venema
30 /*	IBM T.J. Watson Research
31 /*	P.O. Box 704
32 /*	Yorktown Heights, NY 10598, USA
33 /*--*/
34 
35 #endif
36