1 #ifndef PARSE_H_INCLUDED
2 #define PARSE_H_INCLUDED
3 
4 #if defined(__cplusplus)
5 extern "C" {
6 #endif
7 
8 int     usage(FILE * const fp, const char *ProgramName);
9 int     short_help(const lame_global_flags * gfp, FILE * const fp, const char *ProgramName);
10 int     long_help(const lame_global_flags * gfp, FILE * const fp, const char *ProgramName,
11                   int lessmode);
12 int     display_bitrates(FILE * const fp);
13 
14 int     parse_args(lame_global_flags * gfp, int argc, char **argv, char *const inPath,
15                    char *const outPath, char **nogap_inPath, int *max_nogap);
16 
17 void    parse_close();
18 
19 #if defined(__cplusplus)
20 }
21 #endif
22 
23 #endif
24 /* end of parse.h */
25