]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blob - include/input.h
libxfs: plumb in refcount deferred op log items
[thirdparty/xfsprogs-dev.git] / include / input.h
1 /*
2 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17 */
18 #ifndef __INPUT_H__
19 #define __INPUT_H__
20
21 #include <pwd.h>
22 #include <grp.h>
23 #include <sys/types.h>
24 #include "project.h"
25 #include <stdbool.h>
26
27 extern char **breakline(char *input, int *count);
28 extern void doneline(char *input, char **vec);
29 extern char *fetchline(void);
30
31 extern long long cvtnum(size_t blocksize, size_t sectorsize, char *s);
32 extern void cvtstr(double value, char *str, size_t sz);
33 extern unsigned long cvttime(char *s);
34
35 extern struct timeval tadd(struct timeval t1, struct timeval t2);
36 extern struct timeval tsub(struct timeval t1, struct timeval t2);
37 extern double tdiv(double value, struct timeval tv);
38
39 enum {
40 DEFAULT_TIME = 0x0,
41 TERSE_FIXED_TIME = 0x1,
42 VERBOSE_FIXED_TIME = 0x2
43 };
44
45 extern void timestr(struct timeval *tv, char *str, size_t sz, int flags);
46
47 extern uid_t uid_from_string(char *user);
48 extern gid_t gid_from_string(char *group);
49 extern prid_t prid_from_string(char *project);
50 extern bool isdigits_only(const char *str);
51
52 #define HAVE_FTW_H 1 /* TODO: configure me */
53
54 #ifdef HAVE_FTW_H
55 #include <ftw.h>
56 #else
57 struct FTW;
58 struct stat;
59 extern int nftw(
60 char *dir,
61 int (*fn)(const char *, const struct stat *, int, struct FTW *),
62 int depth,
63 int flags);
64 #endif
65
66 #endif /* __INPUT_H__ */