Add new parse_uinttype wrappers for strtoul in src/helper/command.[ch].

- Used to improve command argument parsing of unsigned integers values.


git-svn-id: svn://svn.berlios.de/openocd/trunk@2206 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
zwelch 2009-06-12 01:39:44 +00:00
parent 5bb0f1d29a
commit 5c123481a1
2 changed files with 31 additions and 0 deletions

View File

@ -848,3 +848,18 @@ long jim_global_long(const char *variable)
}
return 0;
}
int parse_ullong(const char *str, unsigned long long *ul)
{
char *end;
*ul = strtoull(str, &end, 0);
bool okay = *str && !*end && ULLONG_MAX != *ul;
return okay ? ERROR_OK : ERROR_COMMAND_SYNTAX_ERROR;
}
int parse_ulong(const char *str, unsigned long *ul)
{
char *end;
*ul = strtoul(str, &end, 0);
bool okay = *str && !*end && ULONG_MAX != *ul;
return okay ? ERROR_OK : ERROR_COMMAND_SYNTAX_ERROR;
}

View File

@ -107,4 +107,20 @@ void register_jim(command_context_t *context, const char *name, int (*cmd)(Jim_I
long jim_global_long(const char *variable);
int parse_ulong(const char *str, unsigned long *ul);
int parse_ullong(const char *str, unsigned long long *ul);
#define DEFINE_PARSE_ULONG(name, type, max) \
static inline int parse_##name(const char *str, type *ul) \
{ \
unsigned long n; \
int retval = parse_ulong(str, &n); \
*ul = n; \
return n > (max) ? ERROR_COMMAND_SYNTAX_ERROR : retval; \
}
DEFINE_PARSE_ULONG(uint, unsigned, UINT_MAX)
DEFINE_PARSE_ULONG(u32, uint32_t, UINT32_MAX)
DEFINE_PARSE_ULONG(u16, uint16_t, UINT16_MAX)
DEFINE_PARSE_ULONG(u8, uint8_t, UINT8_MAX)
#endif /* COMMAND_H */