Add skel_getopts

master
Philippe Pittoli 2011-09-18 23:56:59 +02:00
parent 8b3a123588
commit b853f7469a
1 changed files with 40 additions and 0 deletions

40
C_Language/skel_getopts.c Normal file
View File

@ -0,0 +1,40 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(int argc, char * argv[])
{
// Options simples
char * liste_options = "s:e:ol";
int option;
opterr = 0; // Pas de message d'erreur
while((option = getopt(argc,argv,liste_options)) != -1)
{
switch(option)
{
case 's':
fprintf(stdout,"option s %s\n",optarg);
break;
case 'e':
fprintf(stdout,"option e %s\n",optarg);
break;
case 'o':
case 'l':
fprintf(stdout,"option %c",option);
break;
case '?':
fprintf(stdout,"erreur : %s\n",optopt);
break;
}
// s'il reste des options
if(argc != optind)
{
fprintf(stdout, "Arguments restants : \n");
while(optind != argc)
fprintf(stdout, " %s \n", argv[optind++]);
}
return EXIT_SUCCESS;
}