diff options
-rw-r--r-- | src/main.c | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -1,16 +1,15 @@ | |||
1 | #include <stdlib.h> | 1 | #include <stdlib.h> |
2 | #include <stdio.h> | 2 | #include <stdio.h> |
3 | #include <unistd.h> | ||
4 | #include <getopt.h> | 3 | #include <getopt.h> |
4 | #include <MLV/MLV_path.h> | ||
5 | #include "gui/gui.h" | 5 | #include "gui/gui.h" |
6 | #include "MLV/MLV_path.h" | ||
7 | 6 | ||
8 | int main(int argc, char **argv) { | 7 | int main(int argc, char **argv) { |
9 | int opt = 0; | 8 | int opt = 0; |
10 | int help = -1; | 9 | int help = -1; |
11 | static struct option long_options[] = { | 10 | static struct option long_options[] = { |
12 | {"help", 0, 0, 'h'}, | 11 | {"help", 0, 0, 'h'}, |
13 | {0, 0, 0, 0} | 12 | {0, 0, 0, 0} |
14 | }; | 13 | }; |
15 | int long_index = 0; | 14 | int long_index = 0; |
16 | /*Option handling*/ | 15 | /*Option handling*/ |
@@ -25,7 +24,7 @@ int main(int argc, char **argv) { | |||
25 | } | 24 | } |
26 | if (help == 0) { | 25 | if (help == 0) { |
27 | printf( | 26 | printf( |
28 | "--Morphing's Help--\nTo use the morphing, you need to put two correct paths to image files.\n\nCorrect image format :\nICO(Icon)/CUR(Cursor)/BMP, PNM (PPM/PGM/PBM), XPM, LBM(IFF ILBM), PCX, GIF, JPEG, PNG, TGA, TIFF, and XV.\n\nMorphing made by:\n Pacien TRAN-GIRARD and Adam NAILI\n"); | 27 | "--Morphing's Help--\nTo use the morphing, you need to put two correct paths to image files.\n\nCorrect image format :\nICO(Icon)/CUR(Cursor)/BMP, PNM (PPM/PGM/PBM), XPM, LBM(IFF ILBM), PCX, GIF, JPEG, PNG, TGA, TIFF, and XV.\n\nMorphing made by:\n Pacien TRAN-GIRARD and Adam NAILI\n"); |
29 | } else { | 28 | } else { |
30 | int nbArg = argc - optind; | 29 | int nbArg = argc - optind; |
31 | if (nbArg < 2) { | 30 | if (nbArg < 2) { |