blob: 49760adbf225803de1f4e23b7f070634bc5324cc [file] [log] [blame]
Iliyan Malchev7abfb482009-04-23 13:14:13 -07001#ifndef CMDLINE_H
2#define CMDLINE_H
3
4void print_help(const char *executable_name);
5
6extern int get_options(int argc, char **argv,
7 char **outfile,
8 int *height,
9 int *width,
10 int *gray,
11 char **type,
12 int *rotate,
13 int *verbose);
14
15#endif/*CMDLINE_H*/