projects
/
project
/
ubox.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
logd: revert the log size changes
[project/ubox.git]
/
validate
/
libvalidate.h
1
#ifndef _VALIDATE_H__
2
#define _VALIDATE_H__
3
4
enum dt_type {
5
DT_INVALID,
6
DT_BOOL,
7
DT_NUMBER,
8
DT_STRING
9
};
10
11
enum dt_type dt_parse(const char *code, const char *value);
12
13
#endif