• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 *num_nogap);
16 
17 void    parse_close();
18 
19 int     generateOutPath(char const* inPath, char const* outDir, char const* s_ext, char* outPath);
20 
21 #if defined(__cplusplus)
22 }
23 #endif
24 
25 #endif
26 /* end of parse.h */
27