mirror of
https://git.savannah.gnu.org/git/gperf.git
synced 2025-12-02 13:09:22 +00:00
Update copyright notice to GPL v2.
This commit is contained in:
2
AUTHORS
2
AUTHORS
@@ -1,2 +1,2 @@
|
|||||||
Douglas C. Schmidt <schmidt@ics.uci.edu>
|
Douglas C. Schmidt <schmidt@ics.uci.edu>
|
||||||
Bruno Haible <haible@clisp.cons.org>
|
Bruno Haible <bruno@clisp.org>
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
2002-11-02 Bruno Haible <bruno@clisp.org>
|
2002-11-02 Bruno Haible <bruno@clisp.org>
|
||||||
|
|
||||||
|
* *, */*: Update copyright notice to GPL version 2.
|
||||||
|
|
||||||
* src/keyword-list.h (Keyword_List): New class.
|
* src/keyword-list.h (Keyword_List): New class.
|
||||||
(KeywordExt_List): Inherit from it.
|
(KeywordExt_List): Inherit from it.
|
||||||
* src/keyword-list.cc (Keyword_List::Keyword_List): New constructor.
|
* src/keyword-list.cc (Keyword_List::Keyword_List): New constructor.
|
||||||
|
|||||||
12
Makefile.in
12
Makefile.in
@@ -1,13 +1,14 @@
|
|||||||
# Makefile for gperf
|
# Makefile for gperf
|
||||||
|
|
||||||
# Copyright (C) 1989, 1992, 1993, 1998 Free Software Foundation, Inc.
|
# Copyright (C) 1989, 1992, 1993, 1998, 2002 Free Software Foundation, Inc.
|
||||||
# written by Douglas C. Schmidt (schmidt@ics.uci.edu)
|
# Written by Douglas C. Schmidt <schmidt@ics.uci.edu>
|
||||||
|
# and Bruno Haible <bruno@clisp.org>.
|
||||||
#
|
#
|
||||||
# This file is part of GNU GPERF.
|
# This file is part of GNU GPERF.
|
||||||
#
|
#
|
||||||
# GNU GPERF is free software; you can redistribute it and/or modify
|
# GNU GPERF is free software; you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by
|
||||||
# the Free Software Foundation; either version 1, or (at your option)
|
# the Free Software Foundation; either version 2, or (at your option)
|
||||||
# any later version.
|
# any later version.
|
||||||
#
|
#
|
||||||
# GNU GPERF is distributed in the hope that it will be useful,
|
# GNU GPERF is distributed in the hope that it will be useful,
|
||||||
@@ -16,8 +17,9 @@
|
|||||||
# GNU General Public License for more details.
|
# GNU General Public License for more details.
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with GNU GPERF; see the file COPYING. If not, write to
|
# along with this program; see the file COPYING.
|
||||||
# Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
# If not, write to the Free Software Foundation, Inc.,
|
||||||
|
# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
#### Start of system configuration section. ####
|
#### Start of system configuration section. ####
|
||||||
|
|
||||||
|
|||||||
13
configure.in
13
configure.in
@@ -1,13 +1,14 @@
|
|||||||
dnl autoconf configuration for gperf
|
dnl autoconf configuration for gperf
|
||||||
|
|
||||||
dnl Copyright (C) 1998 Free Software Foundation, Inc.
|
dnl Copyright (C) 1998, 2002 Free Software Foundation, Inc.
|
||||||
dnl written by Douglas C. Schmidt (schmidt@ics.uci.edu)
|
dnl Written by Douglas C. Schmidt <schmidt@ics.uci.edu>
|
||||||
|
dnl and Bruno Haible <bruno@clisp.org>.
|
||||||
dnl
|
dnl
|
||||||
dnl This file is part of GNU GPERF.
|
dnl This file is part of GNU GPERF.
|
||||||
dnl
|
dnl
|
||||||
dnl GNU GPERF is free software; you can redistribute it and/or modify
|
dnl GNU GPERF is free software; you can redistribute it and/or modify
|
||||||
dnl it under the terms of the GNU General Public License as published by
|
dnl it under the terms of the GNU General Public License as published by
|
||||||
dnl the Free Software Foundation; either version 1, or (at your option)
|
dnl the Free Software Foundation; either version 2, or (at your option)
|
||||||
dnl any later version.
|
dnl any later version.
|
||||||
dnl
|
dnl
|
||||||
dnl GNU GPERF is distributed in the hope that it will be useful,
|
dnl GNU GPERF is distributed in the hope that it will be useful,
|
||||||
@@ -16,9 +17,9 @@ dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|||||||
dnl GNU General Public License for more details.
|
dnl GNU General Public License for more details.
|
||||||
dnl
|
dnl
|
||||||
dnl You should have received a copy of the GNU General Public License
|
dnl You should have received a copy of the GNU General Public License
|
||||||
dnl along with GNU GPERF; see the file COPYING. If not, write to the
|
dnl along with this program; see the file COPYING.
|
||||||
dnl Free Software Foundation, 59 Temple Place - Suite 330, Boston,
|
dnl If not, write to the Free Software Foundation, Inc.,
|
||||||
dnl MA 02111-1307, USA.
|
dnl 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
AC_INIT(doc/gperf.1)
|
AC_INIT(doc/gperf.1)
|
||||||
AC_PROG_MAKE_SET
|
AC_PROG_MAKE_SET
|
||||||
|
|||||||
@@ -1,12 +1,14 @@
|
|||||||
# Makefile for gperf/doc
|
# Makefile for gperf/doc
|
||||||
|
|
||||||
# Copyright (C) 1998, 2000 Free Software Foundation, Inc.
|
# Copyright (C) 1998, 2000, 2002 Free Software Foundation, Inc.
|
||||||
|
# Written by Douglas C. Schmidt <schmidt@ics.uci.edu>
|
||||||
|
# and Bruno Haible <bruno@clisp.org>.
|
||||||
#
|
#
|
||||||
# This file is part of GNU GPERF.
|
# This file is part of GNU GPERF.
|
||||||
#
|
#
|
||||||
# GNU GPERF is free software; you can redistribute it and/or modify
|
# GNU GPERF is free software; you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by
|
||||||
# the Free Software Foundation; either version 1, or (at your option)
|
# the Free Software Foundation; either version 2, or (at your option)
|
||||||
# any later version.
|
# any later version.
|
||||||
#
|
#
|
||||||
# GNU GPERF is distributed in the hope that it will be useful,
|
# GNU GPERF is distributed in the hope that it will be useful,
|
||||||
@@ -15,8 +17,9 @@
|
|||||||
# GNU General Public License for more details.
|
# GNU General Public License for more details.
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with GNU GPERF; see the file COPYING. If not, write to the Free
|
# along with this program; see the file COPYING.
|
||||||
# Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111, USA.
|
# If not, write to the Free Software Foundation, Inc.,
|
||||||
|
# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
#### Start of system configuration section. ####
|
#### Start of system configuration section. ####
|
||||||
|
|
||||||
|
|||||||
@@ -1,13 +1,14 @@
|
|||||||
dnl autoconf configuration for gperf/doc
|
dnl autoconf configuration for gperf/doc
|
||||||
|
|
||||||
dnl Copyright (C) 1998, 2000 Free Software Foundation, Inc.
|
dnl Copyright (C) 1998, 2000, 2002 Free Software Foundation, Inc.
|
||||||
dnl written by Douglas C. Schmidt (schmidt@ics.uci.edu)
|
dnl Written by Douglas C. Schmidt <schmidt@ics.uci.edu>
|
||||||
|
dnl and Bruno Haible <bruno@clisp.org>.
|
||||||
dnl
|
dnl
|
||||||
dnl This file is part of GNU GPERF.
|
dnl This file is part of GNU GPERF.
|
||||||
dnl
|
dnl
|
||||||
dnl GNU GPERF is free software; you can redistribute it and/or modify
|
dnl GNU GPERF is free software; you can redistribute it and/or modify
|
||||||
dnl it under the terms of the GNU General Public License as published by
|
dnl it under the terms of the GNU General Public License as published by
|
||||||
dnl the Free Software Foundation; either version 1, or (at your option)
|
dnl the Free Software Foundation; either version 2, or (at your option)
|
||||||
dnl any later version.
|
dnl any later version.
|
||||||
dnl
|
dnl
|
||||||
dnl GNU GPERF is distributed in the hope that it will be useful,
|
dnl GNU GPERF is distributed in the hope that it will be useful,
|
||||||
@@ -16,9 +17,9 @@ dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|||||||
dnl GNU General Public License for more details.
|
dnl GNU General Public License for more details.
|
||||||
dnl
|
dnl
|
||||||
dnl You should have received a copy of the GNU General Public License
|
dnl You should have received a copy of the GNU General Public License
|
||||||
dnl along with GNU GPERF; see the file COPYING. If not, write to the
|
dnl along with this program; see the file COPYING.
|
||||||
dnl Free Software Foundation, 59 Temple Place - Suite 330, Boston,
|
dnl If not, write to the Free Software Foundation, Inc.,
|
||||||
dnl MA 02111-1307, USA.
|
dnl 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
AC_INIT(gperf.1)
|
AC_INIT(gperf.1)
|
||||||
PACKAGE=gperf
|
PACKAGE=gperf
|
||||||
|
|||||||
@@ -1,13 +1,14 @@
|
|||||||
# Makefile for gperf/lib
|
# Makefile for gperf/lib
|
||||||
|
|
||||||
# Copyright (C) 1989, 1992, 1993, 1998, 2002 Free Software Foundation, Inc.
|
# Copyright (C) 1989, 1992, 1993, 1998, 2002 Free Software Foundation, Inc.
|
||||||
# written by Douglas C. Schmidt (schmidt@ics.uci.edu)
|
# Written by Douglas C. Schmidt <schmidt@ics.uci.edu>
|
||||||
|
# and Bruno Haible <bruno@clisp.org>.
|
||||||
#
|
#
|
||||||
# This file is part of GNU GPERF.
|
# This file is part of GNU GPERF.
|
||||||
#
|
#
|
||||||
# GNU GPERF is free software; you can redistribute it and/or modify
|
# GNU GPERF is free software; you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by
|
||||||
# the Free Software Foundation; either version 1, or (at your option)
|
# the Free Software Foundation; either version 2, or (at your option)
|
||||||
# any later version.
|
# any later version.
|
||||||
#
|
#
|
||||||
# GNU GPERF is distributed in the hope that it will be useful,
|
# GNU GPERF is distributed in the hope that it will be useful,
|
||||||
@@ -16,8 +17,9 @@
|
|||||||
# GNU General Public License for more details.
|
# GNU General Public License for more details.
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with GNU GPERF; see the file COPYING. If not, write to the Free
|
# along with this program; see the file COPYING.
|
||||||
# Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111, USA.
|
# If not, write to the Free Software Foundation, Inc.,
|
||||||
|
# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
#### Start of system configuration section. ####
|
#### Start of system configuration section. ####
|
||||||
|
|
||||||
|
|||||||
@@ -1,13 +1,14 @@
|
|||||||
dnl autoconf configuration for gperf/lib
|
dnl autoconf configuration for gperf/lib
|
||||||
|
|
||||||
dnl Copyright (C) 1998 Free Software Foundation, Inc.
|
dnl Copyright (C) 1998, 2002 Free Software Foundation, Inc.
|
||||||
dnl written by Douglas C. Schmidt (schmidt@ics.uci.edu)
|
dnl Written by Douglas C. Schmidt <schmidt@ics.uci.edu>
|
||||||
|
dnl and Bruno Haible <bruno@clisp.org>.
|
||||||
dnl
|
dnl
|
||||||
dnl This file is part of GNU GPERF.
|
dnl This file is part of GNU GPERF.
|
||||||
dnl
|
dnl
|
||||||
dnl GNU GPERF is free software; you can redistribute it and/or modify
|
dnl GNU GPERF is free software; you can redistribute it and/or modify
|
||||||
dnl it under the terms of the GNU General Public License as published by
|
dnl it under the terms of the GNU General Public License as published by
|
||||||
dnl the Free Software Foundation; either version 1, or (at your option)
|
dnl the Free Software Foundation; either version 2, or (at your option)
|
||||||
dnl any later version.
|
dnl any later version.
|
||||||
dnl
|
dnl
|
||||||
dnl GNU GPERF is distributed in the hope that it will be useful,
|
dnl GNU GPERF is distributed in the hope that it will be useful,
|
||||||
@@ -16,9 +17,9 @@ dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|||||||
dnl GNU General Public License for more details.
|
dnl GNU General Public License for more details.
|
||||||
dnl
|
dnl
|
||||||
dnl You should have received a copy of the GNU General Public License
|
dnl You should have received a copy of the GNU General Public License
|
||||||
dnl along with GNU GPERF; see the file COPYING. If not, write to the
|
dnl along with this program; see the file COPYING.
|
||||||
dnl Free Software Foundation, 59 Temple Place - Suite 330, Boston,
|
dnl If not, write to the Free Software Foundation, Inc.,
|
||||||
dnl MA 02111-1307, USA.
|
dnl 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
AC_INIT(hash.cc)
|
AC_INIT(hash.cc)
|
||||||
AC_PROG_MAKE_SET
|
AC_PROG_MAKE_SET
|
||||||
|
|||||||
@@ -1,13 +1,14 @@
|
|||||||
# Makefile for gperf/src
|
# Makefile for gperf/src
|
||||||
|
|
||||||
# Copyright (C) 1989, 1992, 1993, 1998, 2000, 2002 Free Software Foundation, Inc.
|
# Copyright (C) 1989, 1992, 1993, 1998, 2000, 2002 Free Software Foundation, Inc.
|
||||||
# written by Douglas C. Schmidt (schmidt@ics.uci.edu)
|
# Written by Douglas C. Schmidt <schmidt@ics.uci.edu>
|
||||||
|
# and Bruno Haible <bruno@clisp.org>.
|
||||||
#
|
#
|
||||||
# This file is part of GNU GPERF.
|
# This file is part of GNU GPERF.
|
||||||
#
|
#
|
||||||
# GNU GPERF is free software; you can redistribute it and/or modify
|
# GNU GPERF is free software; you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by
|
||||||
# the Free Software Foundation; either version 1, or (at your option)
|
# the Free Software Foundation; either version 2, or (at your option)
|
||||||
# any later version.
|
# any later version.
|
||||||
#
|
#
|
||||||
# GNU GPERF is distributed in the hope that it will be useful,
|
# GNU GPERF is distributed in the hope that it will be useful,
|
||||||
@@ -16,8 +17,9 @@
|
|||||||
# GNU General Public License for more details.
|
# GNU General Public License for more details.
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with GNU GPERF; see the file COPYING. If not, write to the Free
|
# along with this program; see the file COPYING.
|
||||||
# Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111, USA.
|
# If not, write to the Free Software Foundation, Inc.,
|
||||||
|
# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
#### Start of system configuration section. ####
|
#### Start of system configuration section. ####
|
||||||
|
|
||||||
|
|||||||
@@ -1,22 +1,24 @@
|
|||||||
/* Fast lookup table abstraction implemented as an Iteration Number Array
|
/* Fast lookup table abstraction implemented as an Iteration Number Array
|
||||||
Copyright (C) 1989-1998, 2002 Free Software Foundation, Inc.
|
Copyright (C) 1989-1998, 2002 Free Software Foundation, Inc.
|
||||||
written by Douglas C. Schmidt (schmidt@ics.uci.edu)
|
Written by Douglas C. Schmidt <schmidt@ics.uci.edu>
|
||||||
|
and Bruno Haible <bruno@clisp.org>.
|
||||||
|
|
||||||
This file is part of GNU GPERF.
|
This file is part of GNU GPERF.
|
||||||
|
|
||||||
GNU GPERF is free software; you can redistribute it and/or modify
|
GNU GPERF is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation; either version 1, or (at your option)
|
the Free Software Foundation; either version 2, or (at your option)
|
||||||
any later version.
|
any later version.
|
||||||
|
|
||||||
GNU GPERF is distributed in the hope that it will be useful,
|
GNU GPERF is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with GNU GPERF; see the file COPYING. If not, write to the Free
|
along with this program; see the file COPYING.
|
||||||
Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111, USA. */
|
If not, write to the Free Software Foundation, Inc.,
|
||||||
|
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
#include "bool-array.h"
|
#include "bool-array.h"
|
||||||
|
|
||||||
|
|||||||
@@ -3,23 +3,25 @@
|
|||||||
/* Simple lookup table abstraction implemented as an Iteration Number Array.
|
/* Simple lookup table abstraction implemented as an Iteration Number Array.
|
||||||
|
|
||||||
Copyright (C) 1989-1998, 2002 Free Software Foundation, Inc.
|
Copyright (C) 1989-1998, 2002 Free Software Foundation, Inc.
|
||||||
written by Douglas C. Schmidt (schmidt@ics.uci.edu)
|
Written by Douglas C. Schmidt <schmidt@ics.uci.edu>
|
||||||
|
and Bruno Haible <bruno@clisp.org>.
|
||||||
|
|
||||||
This file is part of GNU GPERF.
|
This file is part of GNU GPERF.
|
||||||
|
|
||||||
GNU GPERF is free software; you can redistribute it and/or modify
|
GNU GPERF is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation; either version 1, or (at your option)
|
the Free Software Foundation; either version 2, or (at your option)
|
||||||
any later version.
|
any later version.
|
||||||
|
|
||||||
GNU GPERF is distributed in the hope that it will be useful,
|
GNU GPERF is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with GNU GPERF; see the file COPYING. If not, write to the Free
|
along with this program; see the file COPYING.
|
||||||
Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
If not, write to the Free Software Foundation, Inc.,
|
||||||
|
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
#ifndef bool_array_h
|
#ifndef bool_array_h
|
||||||
#define bool_array_h 1
|
#define bool_array_h 1
|
||||||
|
|||||||
@@ -1,23 +1,25 @@
|
|||||||
/* Inline Functions for bool-array.{h,cc}.
|
/* Inline Functions for bool-array.{h,cc}.
|
||||||
|
|
||||||
Copyright (C) 1989-1998, 2002 Free Software Foundation, Inc.
|
Copyright (C) 1989-1998, 2002 Free Software Foundation, Inc.
|
||||||
written by Douglas C. Schmidt (schmidt@ics.uci.edu)
|
Written by Douglas C. Schmidt <schmidt@ics.uci.edu>
|
||||||
|
and Bruno Haible <bruno@clisp.org>.
|
||||||
|
|
||||||
This file is part of GNU GPERF.
|
This file is part of GNU GPERF.
|
||||||
|
|
||||||
GNU GPERF is free software; you can redistribute it and/or modify
|
GNU GPERF is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation; either version 1, or (at your option)
|
the Free Software Foundation; either version 2, or (at your option)
|
||||||
any later version.
|
any later version.
|
||||||
|
|
||||||
GNU GPERF is distributed in the hope that it will be useful,
|
GNU GPERF is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with GNU GPERF; see the file COPYING. If not, write to the Free
|
along with this program; see the file COPYING.
|
||||||
Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
If not, write to the Free Software Foundation, Inc.,
|
||||||
|
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
// This needs:
|
// This needs:
|
||||||
//#include <stdio.h>
|
//#include <stdio.h>
|
||||||
|
|||||||
@@ -1,13 +1,14 @@
|
|||||||
dnl autoconf configuration for gperf/src
|
dnl autoconf configuration for gperf/src
|
||||||
|
|
||||||
dnl Copyright (C) 1998, 2000, 2002 Free Software Foundation, Inc.
|
dnl Copyright (C) 1998, 2000, 2002 Free Software Foundation, Inc.
|
||||||
dnl written by Douglas C. Schmidt (schmidt@ics.uci.edu)
|
dnl Written by Douglas C. Schmidt <schmidt@ics.uci.edu>
|
||||||
|
dnl and Bruno Haible <bruno@clisp.org>.
|
||||||
dnl
|
dnl
|
||||||
dnl This file is part of GNU GPERF.
|
dnl This file is part of GNU GPERF.
|
||||||
dnl
|
dnl
|
||||||
dnl GNU GPERF is free software; you can redistribute it and/or modify
|
dnl GNU GPERF is free software; you can redistribute it and/or modify
|
||||||
dnl it under the terms of the GNU General Public License as published by
|
dnl it under the terms of the GNU General Public License as published by
|
||||||
dnl the Free Software Foundation; either version 1, or (at your option)
|
dnl the Free Software Foundation; either version 2, or (at your option)
|
||||||
dnl any later version.
|
dnl any later version.
|
||||||
dnl
|
dnl
|
||||||
dnl GNU GPERF is distributed in the hope that it will be useful,
|
dnl GNU GPERF is distributed in the hope that it will be useful,
|
||||||
@@ -16,9 +17,9 @@ dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|||||||
dnl GNU General Public License for more details.
|
dnl GNU General Public License for more details.
|
||||||
dnl
|
dnl
|
||||||
dnl You should have received a copy of the GNU General Public License
|
dnl You should have received a copy of the GNU General Public License
|
||||||
dnl along with GNU GPERF; see the file COPYING. If not, write to the
|
dnl along with this program; see the file COPYING.
|
||||||
dnl Free Software Foundation, 59 Temple Place - Suite 330, Boston,
|
dnl If not, write to the Free Software Foundation, Inc.,
|
||||||
dnl MA 02111-1307, USA.
|
dnl 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
AC_INIT(gen-perf.cc)
|
AC_INIT(gen-perf.cc)
|
||||||
AC_CONFIG_HEADER(config.h)
|
AC_CONFIG_HEADER(config.h)
|
||||||
|
|||||||
@@ -1,23 +1,25 @@
|
|||||||
/* Provides high-level routines to manipulate the keywork list
|
/* Provides high-level routines to manipulate the keywork list
|
||||||
structures the code generation output.
|
structures the code generation output.
|
||||||
Copyright (C) 1989-1998, 2000, 2002 Free Software Foundation, Inc.
|
Copyright (C) 1989-1998, 2000, 2002 Free Software Foundation, Inc.
|
||||||
written by Douglas C. Schmidt (schmidt@ics.uci.edu)
|
Written by Douglas C. Schmidt <schmidt@ics.uci.edu>
|
||||||
|
and Bruno Haible <bruno@clisp.org>.
|
||||||
|
|
||||||
This file is part of GNU GPERF.
|
This file is part of GNU GPERF.
|
||||||
|
|
||||||
GNU GPERF is free software; you can redistribute it and/or modify
|
GNU GPERF is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation; either version 1, or (at your option)
|
the Free Software Foundation; either version 2, or (at your option)
|
||||||
any later version.
|
any later version.
|
||||||
|
|
||||||
GNU GPERF is distributed in the hope that it will be useful,
|
GNU GPERF is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with GNU GPERF; see the file COPYING. If not, write to the Free
|
along with this program; see the file COPYING.
|
||||||
Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111, USA. */
|
If not, write to the Free Software Foundation, Inc.,
|
||||||
|
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h> /* declares rand(), srand() */
|
#include <stdlib.h> /* declares rand(), srand() */
|
||||||
|
|||||||
@@ -4,23 +4,25 @@
|
|||||||
structures the code generation output.
|
structures the code generation output.
|
||||||
|
|
||||||
Copyright (C) 1989-1998, 2000, 2002 Free Software Foundation, Inc.
|
Copyright (C) 1989-1998, 2000, 2002 Free Software Foundation, Inc.
|
||||||
written by Douglas C. Schmidt (schmidt@ics.uci.edu)
|
Written by Douglas C. Schmidt <schmidt@ics.uci.edu>
|
||||||
|
and Bruno Haible <bruno@clisp.org>.
|
||||||
|
|
||||||
This file is part of GNU GPERF.
|
This file is part of GNU GPERF.
|
||||||
|
|
||||||
GNU GPERF is free software; you can redistribute it and/or modify
|
GNU GPERF is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation; either version 1, or (at your option)
|
the Free Software Foundation; either version 2, or (at your option)
|
||||||
any later version.
|
any later version.
|
||||||
|
|
||||||
GNU GPERF is distributed in the hope that it will be useful,
|
GNU GPERF is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with GNU GPERF; see the file COPYING. If not, write to the Free
|
along with this program; see the file COPYING.
|
||||||
Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111, USA. */
|
If not, write to the Free Software Foundation, Inc.,
|
||||||
|
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
#ifndef gen_perf_h
|
#ifndef gen_perf_h
|
||||||
#define gen_perf_h 1
|
#define gen_perf_h 1
|
||||||
|
|||||||
@@ -1,22 +1,24 @@
|
|||||||
/* Hash table for checking keyword links. Implemented using double hashing.
|
/* Hash table for checking keyword links. Implemented using double hashing.
|
||||||
Copyright (C) 1989-1998, 2000, 2002 Free Software Foundation, Inc.
|
Copyright (C) 1989-1998, 2000, 2002 Free Software Foundation, Inc.
|
||||||
written by Douglas C. Schmidt (schmidt@ics.uci.edu)
|
Written by Douglas C. Schmidt <schmidt@ics.uci.edu>
|
||||||
|
and Bruno Haible <bruno@clisp.org>.
|
||||||
|
|
||||||
This file is part of GNU GPERF.
|
This file is part of GNU GPERF.
|
||||||
|
|
||||||
GNU GPERF is free software; you can redistribute it and/or modify
|
GNU GPERF is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation; either version 1, or (at your option)
|
the Free Software Foundation; either version 2, or (at your option)
|
||||||
any later version.
|
any later version.
|
||||||
|
|
||||||
GNU GPERF is distributed in the hope that it will be useful,
|
GNU GPERF is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with GNU GPERF; see the file COPYING. If not, write to the Free
|
along with this program; see the file COPYING.
|
||||||
Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111, USA. */
|
If not, write to the Free Software Foundation, Inc.,
|
||||||
|
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
#include "hash-table.h"
|
#include "hash-table.h"
|
||||||
|
|
||||||
|
|||||||
@@ -3,23 +3,25 @@
|
|||||||
/* Hash table used to check for duplicate keyword entries.
|
/* Hash table used to check for duplicate keyword entries.
|
||||||
|
|
||||||
Copyright (C) 1989-1998, 2000, 2002 Free Software Foundation, Inc.
|
Copyright (C) 1989-1998, 2000, 2002 Free Software Foundation, Inc.
|
||||||
written by Douglas C. Schmidt (schmidt@ics.uci.edu)
|
Written by Douglas C. Schmidt <schmidt@ics.uci.edu>
|
||||||
|
and Bruno Haible <bruno@clisp.org>.
|
||||||
|
|
||||||
This file is part of GNU GPERF.
|
This file is part of GNU GPERF.
|
||||||
|
|
||||||
GNU GPERF is free software; you can redistribute it and/or modify
|
GNU GPERF is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation; either version 1, or (at your option)
|
the Free Software Foundation; either version 2, or (at your option)
|
||||||
any later version.
|
any later version.
|
||||||
|
|
||||||
GNU GPERF is distributed in the hope that it will be useful,
|
GNU GPERF is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with GNU GPERF; see the file COPYING. If not, write to the Free
|
along with this program; see the file COPYING.
|
||||||
Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111, USA. */
|
If not, write to the Free Software Foundation, Inc.,
|
||||||
|
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
#ifndef hash_table_h
|
#ifndef hash_table_h
|
||||||
#define hash_table_h 1
|
#define hash_table_h 1
|
||||||
|
|||||||
25
src/input.cc
25
src/input.cc
@@ -3,21 +3,22 @@
|
|||||||
Written by Douglas C. Schmidt <schmidt@ics.uci.edu>
|
Written by Douglas C. Schmidt <schmidt@ics.uci.edu>
|
||||||
and Bruno Haible <bruno@clisp.org>.
|
and Bruno Haible <bruno@clisp.org>.
|
||||||
|
|
||||||
This file is part of GNU GPERF.
|
This file is part of GNU GPERF.
|
||||||
|
|
||||||
GNU GPERF is free software; you can redistribute it and/or modify
|
GNU GPERF is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation; either version 1, or (at your option)
|
the Free Software Foundation; either version 2, or (at your option)
|
||||||
any later version.
|
any later version.
|
||||||
|
|
||||||
GNU GPERF is distributed in the hope that it will be useful,
|
GNU GPERF is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with GNU GPERF; see the file COPYING. If not, write to the Free
|
along with this program; see the file COPYING.
|
||||||
Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111, USA. */
|
If not, write to the Free Software Foundation, Inc.,
|
||||||
|
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h> /* declares exit() */
|
#include <stdlib.h> /* declares exit() */
|
||||||
|
|||||||
25
src/input.h
25
src/input.h
@@ -6,21 +6,22 @@
|
|||||||
Written by Douglas C. Schmidt <schmidt@ics.uci.edu>
|
Written by Douglas C. Schmidt <schmidt@ics.uci.edu>
|
||||||
and Bruno Haible <bruno@clisp.org>.
|
and Bruno Haible <bruno@clisp.org>.
|
||||||
|
|
||||||
This file is part of GNU GPERF.
|
This file is part of GNU GPERF.
|
||||||
|
|
||||||
GNU GPERF is free software; you can redistribute it and/or modify
|
GNU GPERF is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation; either version 1, or (at your option)
|
the Free Software Foundation; either version 2, or (at your option)
|
||||||
any later version.
|
any later version.
|
||||||
|
|
||||||
GNU GPERF is distributed in the hope that it will be useful,
|
GNU GPERF is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with GNU GPERF; see the file COPYING. If not, write to the Free
|
along with this program; see the file COPYING.
|
||||||
Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111, USA. */
|
If not, write to the Free Software Foundation, Inc.,
|
||||||
|
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
#ifndef input_h
|
#ifndef input_h
|
||||||
#define input_h 1
|
#define input_h 1
|
||||||
|
|||||||
@@ -1,22 +1,24 @@
|
|||||||
/* Routines for building, ordering, and printing the keyword list.
|
/* Routines for building, ordering, and printing the keyword list.
|
||||||
Copyright (C) 1989-1998, 2000, 2002 Free Software Foundation, Inc.
|
Copyright (C) 1989-1998, 2000, 2002 Free Software Foundation, Inc.
|
||||||
written by Douglas C. Schmidt (schmidt@ics.uci.edu)
|
Written by Douglas C. Schmidt <schmidt@ics.uci.edu>
|
||||||
|
and Bruno Haible <bruno@clisp.org>.
|
||||||
|
|
||||||
This file is part of GNU GPERF.
|
This file is part of GNU GPERF.
|
||||||
|
|
||||||
GNU GPERF is free software; you can redistribute it and/or modify
|
GNU GPERF is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation; either version 1, or (at your option)
|
the Free Software Foundation; either version 2, or (at your option)
|
||||||
any later version.
|
any later version.
|
||||||
|
|
||||||
GNU GPERF is distributed in the hope that it will be useful,
|
GNU GPERF is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with GNU GPERF; see the file COPYING. If not, write to the Free
|
along with this program; see the file COPYING.
|
||||||
Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111, USA. */
|
If not, write to the Free Software Foundation, Inc.,
|
||||||
|
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h> /* declares exit() */
|
#include <stdlib.h> /* declares exit() */
|
||||||
|
|||||||
@@ -3,23 +3,25 @@
|
|||||||
/* Data and function member declarations for the keyword list class.
|
/* Data and function member declarations for the keyword list class.
|
||||||
|
|
||||||
Copyright (C) 1989-1998, 2002 Free Software Foundation, Inc.
|
Copyright (C) 1989-1998, 2002 Free Software Foundation, Inc.
|
||||||
written by Douglas C. Schmidt (schmidt@ics.uci.edu)
|
Written by Douglas C. Schmidt <schmidt@ics.uci.edu>
|
||||||
|
and Bruno Haible <bruno@clisp.org>.
|
||||||
|
|
||||||
This file is part of GNU GPERF.
|
This file is part of GNU GPERF.
|
||||||
|
|
||||||
GNU GPERF is free software; you can redistribute it and/or modify
|
GNU GPERF is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation; either version 1, or (at your option)
|
the Free Software Foundation; either version 2, or (at your option)
|
||||||
any later version.
|
any later version.
|
||||||
|
|
||||||
GNU GPERF is distributed in the hope that it will be useful,
|
GNU GPERF is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with GNU GPERF; see the file COPYING. If not, write to the Free
|
along with this program; see the file COPYING.
|
||||||
Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111, USA. */
|
If not, write to the Free Software Foundation, Inc.,
|
||||||
|
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
/* The key word list is a useful abstraction that keeps track of
|
/* The key word list is a useful abstraction that keeps track of
|
||||||
various pieces of information that enable that fast generation
|
various pieces of information that enable that fast generation
|
||||||
|
|||||||
@@ -1,23 +1,24 @@
|
|||||||
/* Keyword list.
|
/* Keyword list.
|
||||||
|
|
||||||
Copyright (C) 1989-1998, 2000, 2002 Free Software Foundation, Inc.
|
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||||
Written by Bruno Haible <bruno@clisp.org>.
|
Written by Bruno Haible <bruno@clisp.org>.
|
||||||
|
|
||||||
This file is part of GNU GPERF.
|
This file is part of GNU GPERF.
|
||||||
|
|
||||||
GNU GPERF is free software; you can redistribute it and/or modify
|
GNU GPERF is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation; either version 1, or (at your option)
|
the Free Software Foundation; either version 2, or (at your option)
|
||||||
any later version.
|
any later version.
|
||||||
|
|
||||||
GNU GPERF is distributed in the hope that it will be useful,
|
GNU GPERF is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with GNU GPERF; see the file COPYING. If not, write to the Free
|
along with this program; see the file COPYING.
|
||||||
Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111, USA. */
|
If not, write to the Free Software Foundation, Inc.,
|
||||||
|
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
#include "keyword-list.h"
|
#include "keyword-list.h"
|
||||||
|
|||||||
@@ -2,24 +2,25 @@
|
|||||||
|
|
||||||
/* Keyword list.
|
/* Keyword list.
|
||||||
|
|
||||||
Copyright (C) 1989-1998, 2000, 2002 Free Software Foundation, Inc.
|
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||||
Written by Bruno Haible <bruno@clisp.org>.
|
Written by Bruno Haible <bruno@clisp.org>.
|
||||||
|
|
||||||
This file is part of GNU GPERF.
|
This file is part of GNU GPERF.
|
||||||
|
|
||||||
GNU GPERF is free software; you can redistribute it and/or modify
|
GNU GPERF is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation; either version 1, or (at your option)
|
the Free Software Foundation; either version 2, or (at your option)
|
||||||
any later version.
|
any later version.
|
||||||
|
|
||||||
GNU GPERF is distributed in the hope that it will be useful,
|
GNU GPERF is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with GNU GPERF; see the file COPYING. If not, write to the Free
|
along with this program; see the file COPYING.
|
||||||
Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111, USA. */
|
If not, write to the Free Software Foundation, Inc.,
|
||||||
|
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
#ifndef keyword_list_h
|
#ifndef keyword_list_h
|
||||||
#define keyword_list_h 1
|
#define keyword_list_h 1
|
||||||
|
|||||||
@@ -1,22 +1,24 @@
|
|||||||
/* Keyword data.
|
/* Keyword data.
|
||||||
Copyright (C) 1989-1998, 2000, 2002 Free Software Foundation, Inc.
|
Copyright (C) 1989-1998, 2000, 2002 Free Software Foundation, Inc.
|
||||||
Written by Bruno Haible <bruno@clisp.org>.
|
Written by Douglas C. Schmidt <schmidt@ics.uci.edu>
|
||||||
|
and Bruno Haible <bruno@clisp.org>.
|
||||||
|
|
||||||
This file is part of GNU GPERF.
|
This file is part of GNU GPERF.
|
||||||
|
|
||||||
GNU GPERF is free software; you can redistribute it and/or modify
|
GNU GPERF is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation; either version 1, or (at your option)
|
the Free Software Foundation; either version 2, or (at your option)
|
||||||
any later version.
|
any later version.
|
||||||
|
|
||||||
GNU GPERF is distributed in the hope that it will be useful,
|
GNU GPERF is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with GNU GPERF; see the file COPYING. If not, write to the Free
|
along with this program; see the file COPYING.
|
||||||
Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111, USA. */
|
If not, write to the Free Software Foundation, Inc.,
|
||||||
|
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|||||||
@@ -3,23 +3,25 @@
|
|||||||
/* Keyword data.
|
/* Keyword data.
|
||||||
|
|
||||||
Copyright (C) 1989-1998, 2000, 2002 Free Software Foundation, Inc.
|
Copyright (C) 1989-1998, 2000, 2002 Free Software Foundation, Inc.
|
||||||
Written by Bruno Haible <bruno@clisp.org>.
|
Written by Douglas C. Schmidt <schmidt@ics.uci.edu>
|
||||||
|
and Bruno Haible <bruno@clisp.org>.
|
||||||
|
|
||||||
This file is part of GNU GPERF.
|
This file is part of GNU GPERF.
|
||||||
|
|
||||||
GNU GPERF is free software; you can redistribute it and/or modify
|
GNU GPERF is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation; either version 1, or (at your option)
|
the Free Software Foundation; either version 2, or (at your option)
|
||||||
any later version.
|
any later version.
|
||||||
|
|
||||||
GNU GPERF is distributed in the hope that it will be useful,
|
GNU GPERF is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with GNU GPERF; see the file COPYING. If not, write to the Free
|
along with this program; see the file COPYING.
|
||||||
Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111, USA. */
|
If not, write to the Free Software Foundation, Inc.,
|
||||||
|
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
#ifndef keyword_h
|
#ifndef keyword_h
|
||||||
#define keyword_h 1
|
#define keyword_h 1
|
||||||
|
|||||||
28
src/main.cc
28
src/main.cc
@@ -1,22 +1,24 @@
|
|||||||
/* Driver program for the Gen_Perf hash function generator
|
/* Driver program for the Gen_Perf hash function generator
|
||||||
Copyright (C) 1989-1998, 2000, 2002 Free Software Foundation, Inc.
|
Copyright (C) 1989-1998, 2000, 2002 Free Software Foundation, Inc.
|
||||||
written by Douglas C. Schmidt (schmidt@ics.uci.edu)
|
Written by Douglas C. Schmidt <schmidt@ics.uci.edu>
|
||||||
|
and Bruno Haible <bruno@clisp.org>.
|
||||||
|
|
||||||
This file is part of GNU GPERF.
|
This file is part of GNU GPERF.
|
||||||
|
|
||||||
GNU GPERF is free software; you can redistribute it and/or modify
|
GNU GPERF is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation; either version 1, or (at your option)
|
the Free Software Foundation; either version 2, or (at your option)
|
||||||
any later version.
|
any later version.
|
||||||
|
|
||||||
GNU GPERF is distributed in the hope that it will be useful,
|
GNU GPERF is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with GNU GPERF; see the file COPYING. If not, write to the Free
|
along with this program; see the file COPYING.
|
||||||
Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111, USA. */
|
If not, write to the Free Software Foundation, Inc.,
|
||||||
|
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
/* Simple driver program for the Gen_Perf.hash function generator.
|
/* Simple driver program for the Gen_Perf.hash function generator.
|
||||||
Most of the hard work is done in class Gen_Perf and its class methods. */
|
Most of the hard work is done in class Gen_Perf and its class methods. */
|
||||||
|
|||||||
@@ -1,22 +1,24 @@
|
|||||||
/* Handles parsing the Options provided to the user.
|
/* Handles parsing the Options provided to the user.
|
||||||
Copyright (C) 1989-1998, 2000, 2002 Free Software Foundation, Inc.
|
Copyright (C) 1989-1998, 2000, 2002 Free Software Foundation, Inc.
|
||||||
written by Douglas C. Schmidt (schmidt@ics.uci.edu)
|
Written by Douglas C. Schmidt <schmidt@ics.uci.edu>
|
||||||
|
and Bruno Haible <bruno@clisp.org>.
|
||||||
|
|
||||||
This file is part of GNU GPERF.
|
This file is part of GNU GPERF.
|
||||||
|
|
||||||
GNU GPERF is free software; you can redistribute it and/or modify
|
GNU GPERF is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation; either version 1, or (at your option)
|
the Free Software Foundation; either version 2, or (at your option)
|
||||||
any later version.
|
any later version.
|
||||||
|
|
||||||
GNU GPERF is distributed in the hope that it will be useful,
|
GNU GPERF is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with GNU GPERF; see the file COPYING. If not, write to the Free
|
along with this program; see the file COPYING.
|
||||||
Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111, USA. */
|
If not, write to the Free Software Foundation, Inc.,
|
||||||
|
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h> /* declares atoi(), abs(), exit() */
|
#include <stdlib.h> /* declares atoi(), abs(), exit() */
|
||||||
|
|||||||
@@ -3,23 +3,25 @@
|
|||||||
/* Handles parsing the Options provided to the user.
|
/* Handles parsing the Options provided to the user.
|
||||||
|
|
||||||
Copyright (C) 1989-1998, 2000, 2002 Free Software Foundation, Inc.
|
Copyright (C) 1989-1998, 2000, 2002 Free Software Foundation, Inc.
|
||||||
written by Douglas C. Schmidt (schmidt@ics.uci.edu)
|
Written by Douglas C. Schmidt <schmidt@ics.uci.edu>
|
||||||
|
and Bruno Haible <bruno@clisp.org>.
|
||||||
|
|
||||||
This file is part of GNU GPERF.
|
This file is part of GNU GPERF.
|
||||||
|
|
||||||
GNU GPERF is free software; you can redistribute it and/or modify
|
GNU GPERF is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation; either version 1, or (at your option)
|
the Free Software Foundation; either version 2, or (at your option)
|
||||||
any later version.
|
any later version.
|
||||||
|
|
||||||
GNU GPERF is distributed in the hope that it will be useful,
|
GNU GPERF is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with GNU GPERF; see the file COPYING. If not, write to the Free
|
along with this program; see the file COPYING.
|
||||||
Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111, USA. */
|
If not, write to the Free Software Foundation, Inc.,
|
||||||
|
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
/* This module provides a uniform interface to the various options available
|
/* This module provides a uniform interface to the various options available
|
||||||
to a user of the gperf hash function generator. */
|
to a user of the gperf hash function generator. */
|
||||||
|
|||||||
@@ -1,23 +1,25 @@
|
|||||||
/* Inline Functions for options.{h,cc}.
|
/* Inline Functions for options.{h,cc}.
|
||||||
|
|
||||||
Copyright (C) 1989-1998, 2000, 2002 Free Software Foundation, Inc.
|
Copyright (C) 1989-1998, 2000, 2002 Free Software Foundation, Inc.
|
||||||
written by Douglas C. Schmidt (schmidt@ics.uci.edu)
|
Written by Douglas C. Schmidt <schmidt@ics.uci.edu>
|
||||||
|
and Bruno Haible <bruno@clisp.org>.
|
||||||
|
|
||||||
This file is part of GNU GPERF.
|
This file is part of GNU GPERF.
|
||||||
|
|
||||||
GNU GPERF is free software; you can redistribute it and/or modify
|
GNU GPERF is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation; either version 1, or (at your option)
|
the Free Software Foundation; either version 2, or (at your option)
|
||||||
any later version.
|
any later version.
|
||||||
|
|
||||||
GNU GPERF is distributed in the hope that it will be useful,
|
GNU GPERF is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with GNU GPERF; see the file COPYING. If not, write to the Free
|
along with this program; see the file COPYING.
|
||||||
Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111, USA. */
|
If not, write to the Free Software Foundation, Inc.,
|
||||||
|
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
INLINE
|
INLINE
|
||||||
Positions::Positions ()
|
Positions::Positions ()
|
||||||
|
|||||||
@@ -3,21 +3,22 @@
|
|||||||
Written by Douglas C. Schmidt <schmidt@ics.uci.edu>
|
Written by Douglas C. Schmidt <schmidt@ics.uci.edu>
|
||||||
and Bruno Haible <bruno@clisp.org>.
|
and Bruno Haible <bruno@clisp.org>.
|
||||||
|
|
||||||
This file is part of GNU GPERF.
|
This file is part of GNU GPERF.
|
||||||
|
|
||||||
GNU GPERF is free software; you can redistribute it and/or modify
|
GNU GPERF is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation; either version 1, or (at your option)
|
the Free Software Foundation; either version 2, or (at your option)
|
||||||
any later version.
|
any later version.
|
||||||
|
|
||||||
GNU GPERF is distributed in the hope that it will be useful,
|
GNU GPERF is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with GNU GPERF; see the file COPYING. If not, write to the Free
|
along with this program; see the file COPYING.
|
||||||
Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111, USA. */
|
If not, write to the Free Software Foundation, Inc.,
|
||||||
|
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h> /* declares strncpy(), strchr() */
|
#include <string.h> /* declares strncpy(), strchr() */
|
||||||
|
|||||||
28
src/output.h
28
src/output.h
@@ -3,23 +3,25 @@
|
|||||||
/* Output routines.
|
/* Output routines.
|
||||||
|
|
||||||
Copyright (C) 1989-1998, 2000, 2002 Free Software Foundation, Inc.
|
Copyright (C) 1989-1998, 2000, 2002 Free Software Foundation, Inc.
|
||||||
Written by Bruno Haible <bruno@clisp.org>.
|
Written by Douglas C. Schmidt <schmidt@ics.uci.edu>
|
||||||
|
and Bruno Haible <bruno@clisp.org>.
|
||||||
|
|
||||||
This file is part of GNU GPERF.
|
This file is part of GNU GPERF.
|
||||||
|
|
||||||
GNU GPERF is free software; you can redistribute it and/or modify
|
GNU GPERF is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation; either version 1, or (at your option)
|
the Free Software Foundation; either version 2, or (at your option)
|
||||||
any later version.
|
any later version.
|
||||||
|
|
||||||
GNU GPERF is distributed in the hope that it will be useful,
|
GNU GPERF is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with GNU GPERF; see the file COPYING. If not, write to the Free
|
along with this program; see the file COPYING.
|
||||||
Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111, USA. */
|
If not, write to the Free Software Foundation, Inc.,
|
||||||
|
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
#ifndef output_h
|
#ifndef output_h
|
||||||
#define output_h 1
|
#define output_h 1
|
||||||
|
|||||||
@@ -1,23 +1,25 @@
|
|||||||
/* Correctly reads an arbitrarily size string.
|
/* Correctly reads an arbitrarily size string.
|
||||||
|
|
||||||
Copyright (C) 1989-1998, 2002 Free Software Foundation, Inc.
|
Copyright (C) 1989-1998, 2002 Free Software Foundation, Inc.
|
||||||
written by Douglas C. Schmidt (schmidt@ics.uci.edu)
|
Written by Douglas C. Schmidt <schmidt@ics.uci.edu>
|
||||||
|
and Bruno Haible <bruno@clisp.org>.
|
||||||
|
|
||||||
This file is part of GNU GPERF.
|
This file is part of GNU GPERF.
|
||||||
|
|
||||||
GNU GPERF is free software; you can redistribute it and/or modify
|
GNU GPERF is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation; either version 1, or (at your option)
|
the Free Software Foundation; either version 2, or (at your option)
|
||||||
any later version.
|
any later version.
|
||||||
|
|
||||||
GNU GPERF is distributed in the hope that it will be useful,
|
GNU GPERF is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with GNU GPERF; see the file COPYING. If not, write to the Free
|
along with this program; see the file COPYING.
|
||||||
Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111, USA. */
|
If not, write to the Free Software Foundation, Inc.,
|
||||||
|
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
#include "read-line.h"
|
#include "read-line.h"
|
||||||
|
|
||||||
|
|||||||
@@ -4,23 +4,25 @@
|
|||||||
dynamically allocated buffer.
|
dynamically allocated buffer.
|
||||||
|
|
||||||
Copyright (C) 1989-1998, 2002 Free Software Foundation, Inc.
|
Copyright (C) 1989-1998, 2002 Free Software Foundation, Inc.
|
||||||
written by Douglas C. Schmidt (schmidt@ics.uci.edu)
|
Written by Douglas C. Schmidt <schmidt@ics.uci.edu>
|
||||||
|
and Bruno Haible <bruno@clisp.org>.
|
||||||
|
|
||||||
This file is part of GNU GPERF.
|
This file is part of GNU GPERF.
|
||||||
|
|
||||||
GNU GPERF is free software; you can redistribute it and/or modify
|
GNU GPERF is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation; either version 1, or (at your option)
|
the Free Software Foundation; either version 2, or (at your option)
|
||||||
any later version.
|
any later version.
|
||||||
|
|
||||||
GNU GPERF is distributed in the hope that it will be useful,
|
GNU GPERF is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with GNU GPERF; see the file COPYING. If not, write to the Free
|
along with this program; see the file COPYING.
|
||||||
Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111, USA. */
|
If not, write to the Free Software Foundation, Inc.,
|
||||||
|
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
#ifndef read_line_h
|
#ifndef read_line_h
|
||||||
#define read_line_h 1
|
#define read_line_h 1
|
||||||
|
|||||||
@@ -1,23 +1,25 @@
|
|||||||
/* Inline Functions for read-line.{h,cc}.
|
/* Inline Functions for read-line.{h,cc}.
|
||||||
|
|
||||||
Copyright (C) 1989-1998, 2002 Free Software Foundation, Inc.
|
Copyright (C) 1989-1998, 2002 Free Software Foundation, Inc.
|
||||||
written by Douglas C. Schmidt (schmidt@ics.uci.edu)
|
Written by Douglas C. Schmidt <schmidt@ics.uci.edu>
|
||||||
|
and Bruno Haible <bruno@clisp.org>.
|
||||||
|
|
||||||
This file is part of GNU GPERF.
|
This file is part of GNU GPERF.
|
||||||
|
|
||||||
GNU GPERF is free software; you can redistribute it and/or modify
|
GNU GPERF is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation; either version 1, or (at your option)
|
the Free Software Foundation; either version 2, or (at your option)
|
||||||
any later version.
|
any later version.
|
||||||
|
|
||||||
GNU GPERF is distributed in the hope that it will be useful,
|
GNU GPERF is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with GNU GPERF; see the file COPYING. If not, write to the Free
|
along with this program; see the file COPYING.
|
||||||
Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111, USA. */
|
If not, write to the Free Software Foundation, Inc.,
|
||||||
|
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
// This needs:
|
// This needs:
|
||||||
//#include <stdio.h>
|
//#include <stdio.h>
|
||||||
|
|||||||
@@ -1,22 +1,24 @@
|
|||||||
/* Static class data members that are shared between several classes.
|
/* Static class data members that are shared between several classes.
|
||||||
Copyright (C) 1989-1998, 2002 Free Software Foundation, Inc.
|
Copyright (C) 1989-1998, 2002 Free Software Foundation, Inc.
|
||||||
written by Douglas C. Schmidt (schmidt@ics.uci.edu)
|
Written by Douglas C. Schmidt <schmidt@ics.uci.edu>
|
||||||
|
and Bruno Haible <bruno@clisp.org>.
|
||||||
|
|
||||||
This file is part of GNU GPERF.
|
This file is part of GNU GPERF.
|
||||||
|
|
||||||
GNU GPERF is free software; you can redistribute it and/or modify
|
GNU GPERF is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation; either version 1, or (at your option)
|
the Free Software Foundation; either version 2, or (at your option)
|
||||||
any later version.
|
any later version.
|
||||||
|
|
||||||
GNU GPERF is distributed in the hope that it will be useful,
|
GNU GPERF is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with GNU GPERF; see the file COPYING. If not, write to the Free
|
along with this program; see the file COPYING.
|
||||||
Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111, USA. */
|
If not, write to the Free Software Foundation, Inc.,
|
||||||
|
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
#include "vectors.h"
|
#include "vectors.h"
|
||||||
|
|
||||||
|
|||||||
@@ -4,23 +4,25 @@
|
|||||||
inheritance.
|
inheritance.
|
||||||
|
|
||||||
Copyright (C) 1989-1998, 2002 Free Software Foundation, Inc.
|
Copyright (C) 1989-1998, 2002 Free Software Foundation, Inc.
|
||||||
written by Douglas C. Schmidt (schmidt@ics.uci.edu)
|
Written by Douglas C. Schmidt <schmidt@ics.uci.edu>
|
||||||
|
and Bruno Haible <bruno@clisp.org>.
|
||||||
|
|
||||||
This file is part of GNU GPERF.
|
This file is part of GNU GPERF.
|
||||||
|
|
||||||
GNU GPERF is free software; you can redistribute it and/or modify
|
GNU GPERF is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation; either version 1, or (at your option)
|
the Free Software Foundation; either version 2, or (at your option)
|
||||||
any later version.
|
any later version.
|
||||||
|
|
||||||
GNU GPERF is distributed in the hope that it will be useful,
|
GNU GPERF is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with GNU GPERF; see the file COPYING. If not, write to the Free
|
along with this program; see the file COPYING.
|
||||||
Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111, USA. */
|
If not, write to the Free Software Foundation, Inc.,
|
||||||
|
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
#ifndef vectors_h
|
#ifndef vectors_h
|
||||||
#define vectors_h 1
|
#define vectors_h 1
|
||||||
|
|||||||
@@ -1,22 +1,24 @@
|
|||||||
/* Current program version number.
|
/* Current program version number.
|
||||||
|
|
||||||
Copyright (C) 1989-1998, 2000 Free Software Foundation, Inc.
|
Copyright (C) 1989-1998, 2000, 2002 Free Software Foundation, Inc.
|
||||||
written by Douglas C. Schmidt (schmidt@ics.uci.edu)
|
Written by Douglas C. Schmidt <schmidt@ics.uci.edu>
|
||||||
|
and Bruno Haible <bruno@clisp.org>.
|
||||||
|
|
||||||
This file is part of GNU GPERF.
|
This file is part of GNU GPERF.
|
||||||
|
|
||||||
GNU GPERF is free software; you can redistribute it and/or modify
|
GNU GPERF is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation; either version 1, or (at your option)
|
the Free Software Foundation; either version 2, or (at your option)
|
||||||
any later version.
|
any later version.
|
||||||
|
|
||||||
GNU GPERF is distributed in the hope that it will be useful,
|
GNU GPERF is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with GNU GPERF; see the file COPYING. If not, write to the Free
|
along with this program; see the file COPYING.
|
||||||
Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111, USA. */
|
If not, write to the Free Software Foundation, Inc.,
|
||||||
|
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
const char *version_string = "2.7.2";
|
const char *version_string = "2.7.2";
|
||||||
|
|||||||
@@ -1,23 +1,25 @@
|
|||||||
/* Current program version number.
|
/* Current program version number.
|
||||||
|
|
||||||
Copyright (C) 1989-1998 Free Software Foundation, Inc.
|
Copyright (C) 1989-1998, 2002 Free Software Foundation, Inc.
|
||||||
written by Douglas C. Schmidt (schmidt@ics.uci.edu)
|
Written by Douglas C. Schmidt <schmidt@ics.uci.edu>
|
||||||
|
and Bruno Haible <bruno@clisp.org>.
|
||||||
|
|
||||||
This file is part of GNU GPERF.
|
This file is part of GNU GPERF.
|
||||||
|
|
||||||
GNU GPERF is free software; you can redistribute it and/or modify
|
GNU GPERF is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation; either version 1, or (at your option)
|
the Free Software Foundation; either version 2, or (at your option)
|
||||||
any later version.
|
any later version.
|
||||||
|
|
||||||
GNU GPERF is distributed in the hope that it will be useful,
|
GNU GPERF is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with GNU GPERF; see the file COPYING. If not, write to the Free
|
along with this program; see the file COPYING.
|
||||||
Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111, USA. */
|
If not, write to the Free Software Foundation, Inc.,
|
||||||
|
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
/* Current release version. */
|
/* Current release version. */
|
||||||
extern const char *version_string;
|
extern const char *version_string;
|
||||||
|
|||||||
@@ -1,13 +1,14 @@
|
|||||||
# Makefile for gperf/tests
|
# Makefile for gperf/tests
|
||||||
|
|
||||||
# Copyright (C) 1989, 1992, 1993, 1995, 1998, 2000 Free Software Foundation, Inc.
|
# Copyright (C) 1989, 1992, 1993, 1995, 1998, 2000, 2002 Free Software Foundation, Inc.
|
||||||
# written by Douglas C. Schmidt (schmidt@ics.uci.edu)
|
# Written by Douglas C. Schmidt <schmidt@ics.uci.edu>
|
||||||
|
# and Bruno Haible <bruno@clisp.org>.
|
||||||
#
|
#
|
||||||
# This file is part of GNU GPERF.
|
# This file is part of GNU GPERF.
|
||||||
#
|
#
|
||||||
# GNU GPERF is free software; you can redistribute it and/or modify
|
# GNU GPERF is free software; you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by
|
||||||
# the Free Software Foundation; either version 1, or (at your option)
|
# the Free Software Foundation; either version 2, or (at your option)
|
||||||
# any later version.
|
# any later version.
|
||||||
#
|
#
|
||||||
# GNU GPERF is distributed in the hope that it will be useful,
|
# GNU GPERF is distributed in the hope that it will be useful,
|
||||||
@@ -16,8 +17,9 @@
|
|||||||
# GNU General Public License for more details.
|
# GNU General Public License for more details.
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with GNU GPERF; see the file COPYING. If not, write to the Free
|
# along with this program; see the file COPYING.
|
||||||
# Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111, USA.
|
# If not, write to the Free Software Foundation, Inc.,
|
||||||
|
# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
#### Start of system configuration section. ####
|
#### Start of system configuration section. ####
|
||||||
|
|
||||||
|
|||||||
@@ -1,13 +1,14 @@
|
|||||||
dnl autoconf configuration for gperf/tests
|
dnl autoconf configuration for gperf/tests
|
||||||
|
|
||||||
dnl Copyright (C) 1998 Free Software Foundation, Inc.
|
dnl Copyright (C) 1998, 2002 Free Software Foundation, Inc.
|
||||||
dnl written by Douglas C. Schmidt (schmidt@ics.uci.edu)
|
dnl Written by Douglas C. Schmidt <schmidt@ics.uci.edu>
|
||||||
|
dnl and Bruno Haible <bruno@clisp.org>.
|
||||||
dnl
|
dnl
|
||||||
dnl This file is part of GNU GPERF.
|
dnl This file is part of GNU GPERF.
|
||||||
dnl
|
dnl
|
||||||
dnl GNU GPERF is free software; you can redistribute it and/or modify
|
dnl GNU GPERF is free software; you can redistribute it and/or modify
|
||||||
dnl it under the terms of the GNU General Public License as published by
|
dnl it under the terms of the GNU General Public License as published by
|
||||||
dnl the Free Software Foundation; either version 1, or (at your option)
|
dnl the Free Software Foundation; either version 2, or (at your option)
|
||||||
dnl any later version.
|
dnl any later version.
|
||||||
dnl
|
dnl
|
||||||
dnl GNU GPERF is distributed in the hope that it will be useful,
|
dnl GNU GPERF is distributed in the hope that it will be useful,
|
||||||
@@ -16,9 +17,9 @@ dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|||||||
dnl GNU General Public License for more details.
|
dnl GNU General Public License for more details.
|
||||||
dnl
|
dnl
|
||||||
dnl You should have received a copy of the GNU General Public License
|
dnl You should have received a copy of the GNU General Public License
|
||||||
dnl along with GNU GPERF; see the file COPYING. If not, write to the
|
dnl along with this program; see the file COPYING.
|
||||||
dnl Free Software Foundation, 59 Temple Place - Suite 330, Boston,
|
dnl If not, write to the Free Software Foundation, Inc.,
|
||||||
dnl MA 02111-1307, USA.
|
dnl 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
AC_INIT(c-parse.gperf)
|
AC_INIT(c-parse.gperf)
|
||||||
AC_PROG_MAKE_SET
|
AC_PROG_MAKE_SET
|
||||||
|
|||||||
Reference in New Issue
Block a user