1
0
Fork 0
forked from len0rd/rockbox

imxtools/scsitools: add support for more commands

Change-Id: Iddff64502ba357dcd36903d31015b9ae2d00ae62
This commit is contained in:
Amaury Pouly 2013-01-15 19:42:20 +00:00
parent 4b1c48f5f5
commit 8ed0d198c5
3 changed files with 459 additions and 8 deletions

View file

@ -46,5 +46,6 @@ void enable_color(bool enable);
#define cprintf(col, ...) do {color(col); printf(__VA_ARGS__); }while(0)
#define cprintf_field(str1, ...) do{ cprintf(GREEN, str1); cprintf(YELLOW, __VA_ARGS__); }while(0)
#define cprintf_field2(str1, ...) do{ cprintf(BLUE, str1); cprintf(RED, __VA_ARGS__); }while(0)
#endif /* __MISC_H__ */