File: parse.h

package info (click to toggle)
lame 3.99.5%2Brepack1-9
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 7,212 kB
  • ctags: 4,697
  • sloc: ansic: 32,994; sh: 12,500; cpp: 8,216; makefile: 448; pascal: 215; perl: 33; xml: 13
file content (24 lines) | stat: -rw-r--r-- 668 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef PARSE_H_INCLUDED
#define PARSE_H_INCLUDED

#if defined(__cplusplus)
extern "C" {
#endif

int     usage(FILE * const fp, const char *ProgramName);
int     short_help(const lame_global_flags * gfp, FILE * const fp, const char *ProgramName);
int     long_help(const lame_global_flags * gfp, FILE * const fp, const char *ProgramName,
                  int lessmode);
int     display_bitrates(FILE * const fp);

int     parse_args(lame_global_flags * gfp, int argc, char **argv, char *const inPath,
                   char *const outPath, char **nogap_inPath, int *max_nogap);

void    parse_close();

#if defined(__cplusplus)
}
#endif

#endif
/* end of parse.h */