diff options
| author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2009-09-26 23:16:06 +0000 |
|---|---|---|
| committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2009-09-26 23:16:06 +0000 |
| commit | 5666aadb3ddf92915fa484c460bcf9623d08fcf8 (patch) | |
| tree | 0816e10ab8fbd7ed1c706af2ca3a7f07ca804880 /lib/libutil/libutil.h | |
| parent | 4085a92bc9323e55ee127b879c74bfb3a4bdf229 (diff) | |
Notes
Diffstat (limited to 'lib/libutil/libutil.h')
| -rw-r--r-- | lib/libutil/libutil.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/libutil/libutil.h b/lib/libutil/libutil.h index afd5db6d2285..2190a532f793 100644 --- a/lib/libutil/libutil.h +++ b/lib/libutil/libutil.h @@ -144,10 +144,13 @@ int pidfile_remove(struct pidfh *pfh); struct quotafile; struct fstab; struct quotafile *quota_open(struct fstab *, int, int); -void quota_close(struct quotafile *); +const char *quota_fsname(const struct quotafile *); +const char *quota_qfname(const struct quotafile *); +int quota_check_path(const struct quotafile *, const char *path); int quota_read(struct quotafile *, struct dqblk *, int); int quota_write_limits(struct quotafile *, struct dqblk *, int); int quota_write_usage(struct quotafile *, struct dqblk *, int); +void quota_close(struct quotafile *); #endif __END_DECLS |
