Add further options for `gargoyle_find_emblem` to find

This commit is contained in:
Nick Chambers 2022-07-01 15:58:12 -05:00
parent ba1970b559
commit 8352e793ee
1 changed files with 3 additions and 1 deletions

View File

@ -79,8 +79,10 @@ void sleuth_test_find_brand(void) {
void sleuth_test_find_emblem(void) {
struct gargoyle_opt optv[] = {
{ GARGOYLE_MK_OPT("glu"), 'G', NULL, 0, GARGOYLE_TYPE_UINT },
{ GARGOYLE_MK_OPT("foo"), 'f', NULL, 0, GARGOYLE_TYPE_BOOL },
{ GARGOYLE_MK_OPT("bar"), 'b', NULL, 0, GARGOYLE_TYPE_UINT }
{ GARGOYLE_MK_OPT("bar"), 'b', NULL, 0, GARGOYLE_TYPE_DBLE },
{ GARGOYLE_MK_OPT("blu"), 'B', NULL, 0, GARGOYLE_TYPE_UINT }
};
uint16_t optc = sizeof(optv) / sizeof(struct gargoyle_opt);