Blame README

Packit b27855
This is GNU gperf. It is a program that generates perfect hash
Packit b27855
functions for sets of key words.  A perfect hash function is:
Packit b27855
Packit b27855
          A hash function and a data structure that allows 
Packit b27855
          recognition of a key word in a set of words using 
Packit b27855
          exactly 1 probe into the data structure.
Packit b27855
Packit b27855
The doc/gperf.html file explains how the program works, the form of
Packit b27855
the input, what options are available, and hints on choosing the best
Packit b27855
options for particular key words set.
Packit b27855
Packit b27855
See the file NEWS for a list of major changes in the current release.
Packit b27855
Packit b27855
See the file INSTALL for compilation and installation instructions.
Packit b27855
Packit b27855
Output from the GPERF program is used to recognize reserved words in
Packit b27855
the GNU C, GNU C++, and GNU Pascal compilers, as well as with the GNU
Packit b27855
indent program.
Packit b27855
Packit b27855
For general documentation on the coding and usage standards
Packit b27855
this distribution follows, see the GNU standards document
Packit b27855
ftp://ftp.gnu.org/pub/gnu/standards.*, especially the 'Makefile
Packit b27855
Conventions', 'Configuration', and 'User Interfaces' sections.
Packit b27855
Packit b27855
Mail suggestions and bug reports to <bug-gperf@gnu.org>.  When
Packit b27855
reporting bugs, please include in the subject line the package name
Packit b27855
and version (output of 'gperf --version') for which you found a problem.
Packit b27855