1
0
mirror of https://git.savannah.gnu.org/git/gperf.git synced 2025-12-02 13:09:22 +00:00

New option --output-file.

This commit is contained in:
Bruno Haible
2003-01-28 12:18:10 +00:00
parent 281d151d8e
commit f54d310530
8 changed files with 73 additions and 2 deletions

View File

@@ -184,6 +184,9 @@ public:
/* Returns the input file name. */
const char * get_input_file_name () const;
/* Returns the output file name. */
const char * get_output_file_name () const;
/* Returns the iterations value. */
int get_iterations () const;
@@ -250,6 +253,9 @@ private:
/* Name of input file. */
char * _input_file_name;
/* Name of output file. */
char * _output_file_name;
/* Amount to iterate when a collision occurs. */
int _iterations;