expand -h option

This commit is contained in:
tth 2020-10-09 23:35:01 +02:00
parent a724173b76
commit d5d858a043
2 changed files with 10 additions and 1 deletions

View File

@ -3,6 +3,8 @@
OPTS = -Wall -g -DDEBUG_LEVEL=0 OPTS = -Wall -g -DDEBUG_LEVEL=0
all: joy2laser
laserblast.o: laserblast.c Makefile laserblast.o: laserblast.c Makefile
gcc -c ${OPTS} $< gcc -c ${OPTS} $<

View File

@ -75,7 +75,14 @@ exit(1);
int help(int k) int help(int k)
{ {
puts("HELP ME !"); puts("HELP ME !");
return 0; puts("\t-p NNN\t\tlocal listening port");
puts("\t-R a.b.c.d\tremote host");
puts("\t-P NNN\t\tremote port");
puts("\t-L N\t\tlaser number");
puts("\t-S N\t\tscene number");
puts("\t-v\t\tincrease verbosity");
return 1;
} }
/* ------------------------------------------------------------------- */ /* ------------------------------------------------------------------- */
int main(int argc, char *argv[]) int main(int argc, char *argv[])