Lines Matching defs:arg
68 char *arg;
80 arg = argv[optInd];
83 if(strcmp(arg, "-v") == 0 || strcmp(arg, "--version") == 0) {
87 else if(strcmp(arg, "-h") == 0 || strcmp(arg, "--help") == 0) {
91 else if(strcmp(arg, "-u") == 0 || strcmp(arg, "--gmt") == 0) {
95 else if(strcmp(arg, "-f") == 0 || strcmp(arg, "--full") == 0) {
99 else if(strcmp(arg, "-l") == 0 || strcmp(arg, "--long") == 0) {
103 else if(strcmp(arg, "-m") == 0 || strcmp(arg, "--medium") == 0) {
107 else if(strcmp(arg, "-s") == 0 || strcmp(arg, "--short") == 0) {
110 else if(strcmp(arg, "-F") == 0 || strcmp(arg, "--format") == 0) {
115 } else if(strcmp(arg, "-r") == 0) {
120 } else if(strcmp(arg, "-R") == 0) {
125 } else if(strcmp(arg, "-P") == 0) {
132 else if(strcmp(arg, "--") == 0) {
138 else if(strncmp(arg, "-", strlen("-")) == 0) {
139 printf("icudate: invalid option -- %s\n", arg+1);