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