summaryrefslogtreecommitdiffstats
path: root/include/parseopt.h
blob: 1f9763f8c9b22dbe8915f25a737401a9b0b15d68 (plain)
1
2
3
4
5
6
7
8
9
#ifndef __PARSEOPT_H__
#define __PARSEOPT_H__

void parseopt_b(const char *options, const char *opt, bool *val);
void parseopt_hu(const char *options, const char *opt, unsigned short *val);
void parseopt_u16(const char *options, const char *opt, uint16_t *val);
void parseopt_str(const char *options, const char *opt, char **val);

#endif /* __PARSEOPT_H__ */