mirror of
https://github.com/versity/scoutfs.git
synced 2026-02-08 03:30:46 +00:00
We're starting to collect a few of these. Let's put them in one place. Signed-off-by: Zach Brown <zab@versity.com>
11 lines
211 B
C
11 lines
211 B
C
#ifndef _PARSE_H_
|
|
#define _PARSE_H_
|
|
|
|
struct scoutfs_timespec;
|
|
|
|
int parse_u64(char *str, u64 *val_ret);
|
|
int parse_u32(char *str, u32 *val_ret);
|
|
int parse_timespec(char *str, struct scoutfs_timespec *ts);
|
|
|
|
#endif
|