Last active
          August 29, 2015 14:08 
        
      - 
      
 - 
        
Save mgiacomini/6fefbe7f8e756eb419a5 to your computer and use it in GitHub Desktop.  
    c-cli-getopt
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #include <ctype.h> | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <unistd.h> | |
| int | |
| main (int argc, char **argv) | |
| { | |
| int aflag = 0; | |
| int bflag = 0; | |
| char *cvalue = NULL; | |
| int index; | |
| int c; | |
| opterr = 0; | |
| while ((c = getopt (argc, argv, "abc:")) != -1) | |
| switch (c) | |
| { | |
| case 'a': | |
| aflag = 1; | |
| break; | |
| case 'b': | |
| bflag = 1; | |
| break; | |
| case 'c': | |
| cvalue = optarg; | |
| break; | |
| case '?': | |
| if (optopt == 'c') | |
| fprintf (stderr, "Option -%c requires an argument.\n", optopt); | |
| else if (isprint (optopt)) | |
| fprintf (stderr, "Unknown option `-%c'.\n", optopt); | |
| else | |
| fprintf (stderr, | |
| "Unknown option character `\\x%x'.\n", | |
| optopt); | |
| return 1; | |
| default: | |
| abort (); | |
| } | |
| printf ("aflag = %d, bflag = %d, cvalue = %s\n", | |
| aflag, bflag, cvalue); | |
| for (index = optind; index < argc; index++) | |
| printf ("Non-option argument %s\n", argv[index]); | |
| return 0; | |
| } | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment