]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blame - include/input.h
libxcmd: add non-iterating user commands
[thirdparty/xfsprogs-dev.git] / include / input.h
CommitLineData
e246ba5f 1/*
f302e9e4
NS
2 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
dfc130f3 4 *
f302e9e4
NS
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
e246ba5f 7 * published by the Free Software Foundation.
dfc130f3 8 *
f302e9e4
NS
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.
dfc130f3 13 *
f302e9e4
NS
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
e246ba5f 17 */
3d93ccb7
NS
18#ifndef __INPUT_H__
19#define __INPUT_H__
20
21#include <pwd.h>
22#include <grp.h>
23#include <sys/types.h>
6b803e5a 24#include "project.h"
fd537fc5 25#include <stdbool.h>
e246ba5f
NS
26
27extern char **breakline(char *input, int *count);
28extern void doneline(char *input, char **vec);
29extern char *fetchline(void);
3d93ccb7 30
2c2f6d79 31extern long long cvtnum(size_t blocksize, size_t sectorsize, char *s);
92d9b902 32extern void cvtstr(double value, char *str, size_t sz);
3d93ccb7
NS
33extern unsigned long cvttime(char *s);
34
35extern struct timeval tadd(struct timeval t1, struct timeval t2);
92d9b902
NS
36extern struct timeval tsub(struct timeval t1, struct timeval t2);
37extern double tdiv(double value, struct timeval tv);
5c7bef67
NS
38
39enum {
40 DEFAULT_TIME = 0x0,
41 TERSE_FIXED_TIME = 0x1,
2a1888c5 42 VERBOSE_FIXED_TIME = 0x2
5c7bef67
NS
43};
44
45extern void timestr(struct timeval *tv, char *str, size_t sz, int flags);
638473d8 46
3d93ccb7
NS
47extern uid_t uid_from_string(char *user);
48extern gid_t gid_from_string(char *group);
49extern prid_t prid_from_string(char *project);
fd537fc5 50extern bool isdigits_only(const char *str);
3d93ccb7
NS
51
52#define HAVE_FTW_H 1 /* TODO: configure me */
53
54#ifdef HAVE_FTW_H
55#include <ftw.h>
56#else
57struct FTW;
58struct stat;
59extern 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__ */