blob: 632d2c9d5606d56bae341b3086539fe908469630 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#ifndef maildirgetquota_h
#define maildirgetquota_h
/*
** Copyright 1998 - 1999 Double Precision, Inc.
** See COPYING for distribution information.
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <sys/types.h>
#include <stdio.h>
#ifdef __cplusplus
extern "C" {
#endif
#define QUOTABUFSIZE 256
int maildir_getquota(const char *, char [QUOTABUFSIZE]);
#ifdef __cplusplus
}
#endif
#endif
|