Lines Matching defs:option
814 char *option = strchr(argv[i], '=');
815 /* skip non-option arguments */
816 if (strncmp(argv[i], "--", 2) || !option) {
822 if (!strcmp(option + 1, "int")) {
824 } else if (!strcmp(option + 1, "float")) {
827 } else if (!strcmp(option + 1, "atom")) {
831 fprintf(stderr, "unknown property type %s\n", option + 1);
835 format = atoi(option + 1);
837 fprintf(stderr, "invalid property format '%s'\n", option + 1);
841 fprintf(stderr, "invalid option '%s'\n", argv[i]);