DECLARE_PARSE_WRAPPER is only used within OpenOCD.
 
Symbols
loading...
Files
loading...

DECLARE_PARSE_WRAPPER macro

Syntax

#define DECLARE_PARSE_WRAPPER(name, type) \     int parse ## name(const char *str, type * ul)

Arguments

name

type

References

LocationText
command.h:414
#define DECLARE_PARSE_WRAPPER(name, type) \
command.h:417
DECLARE_PARSE_WRAPPER(_uint, unsigned);
command.h:418
DECLARE_PARSE_WRAPPER(_u64, uint64_t);
command.h:419
DECLARE_PARSE_WRAPPER(_u32, uint32_t);
command.h:420
DECLARE_PARSE_WRAPPER(_u16, uint16_t);
command.h:421
DECLARE_PARSE_WRAPPER(_u8, uint8_t);
command.h:423
DECLARE_PARSE_WRAPPER(_int, int);
command.h:424
DECLARE_PARSE_WRAPPER(_s64, int64_t);
command.h:425
DECLARE_PARSE_WRAPPER(_s32, int32_t);
command.h:426
DECLARE_PARSE_WRAPPER(_s16, int16_t);
command.h:427
DECLARE_PARSE_WRAPPER(_s8, int8_t);
command.h:429
DECLARE_PARSE_WRAPPER(_target_addr, target_addr_t);