cmdline: new build system
[libcmdline.git] / src / lib / cmdline_parse_num.h
index 7e47a65..8afac2f 100644 (file)
@@ -68,9 +68,11 @@ enum cmdline_numtype {
        UINT8 = 0,
        UINT16,
        UINT32,
+       UINT64,
        INT8,
        INT16,
-       INT32
+       INT32,
+       INT64
 #ifndef NO_PARSE_FLOAT
        ,FLOAT
 #endif
@@ -88,11 +90,6 @@ typedef struct cmdline_token_num cmdline_parse_token_num_t;
 
 extern struct cmdline_token_ops cmdline_token_num_ops;
 
-int cmdline_parse_num(cmdline_parse_token_hdr_t *tk,
-                     const char *srcbuf, void *res);
-int cmdline_get_help_num(cmdline_parse_token_hdr_t *tk,
-                        char *dstbuf, unsigned int size);
-
 #define TOKEN_NUM_INITIALIZER(structure, field, numtype)   \
 {                                                         \
        .hdr = {                                           \