Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

re2c-debugsource-3.0-slfo.1.1.3 RPM for aarch64

From OpenSuSE Leap 16.0 for aarch64

Name: re2c-debugsource Distribution: SUSE Linux Framework One
Version: 3.0 Vendor: SUSE LLC <https://www.suse.com/>
Release: slfo.1.1.3 Build date: Fri Jun 14 18:59:17 2024
Group: Development/Debug Build host: h02-armsrv1
Size: 1070550 Source RPM: re2c-3.0-slfo.1.1.3.src.rpm
Packager: https://www.suse.com/
Url: https://re2c.org/
Summary: Debug sources for package re2c
This package provides debug sources for package re2c.
Debug sources are useful when developing applications that use this
package or when debugging this package.

Provides

Requires

License

SUSE-Public-Domain

Changelog

* Thu Apr 28 2022 dmueller@suse.com
  - update to 3.0:
    - Added code generation backend for Rust:
    - Added options:
      + ``--loop-switch``
      + ``--no-unsafe``
    - Added configurations;
      + ``re2c:label:yyloop``
      + ``re2c:unsafe``
    - Renamed options to use common naming scheme. The old names are supported as
      aliases, so the change does not break existing code. Documentation has been
      updated to use new names.
      + ``--api`` is a new alias for ``--input``
      + ``--ebcdic`` is a new alias for ``--ecb``
      + ``--ucs2`` is a new alias for ``--wide-chars``
      + ``--utf32`` is a new alias for ``--unicode``
      + ``--utf16`` is a new alias for ``--utf-16``
      + ``--utf8`` is a new alias for ``--utf-8``
      + ``--header`` is a new alias for ``--type-header``
    - Renamed configurations to use common naming scheme and support proper scoping
      under subcategories such as ``:define``, ``:label``, ``:variable``, etc. The
      old names are supported as aliases, so the change does not break existing
      code. Documentation has been updated to use new names.
      + ``re2c:api`` is a new alias for ``re2c:flags:input``
      + ``re2c:bit-vectors`` is a new alias for ``re2c:flags:bit-vectors``
      + ``re2c:case-insensitive`` is a new alias for ``re2c:flags:case-insensitive``
      + ``re2c:case-inverted`` is a new alias for ``re2c:flags:case-inverted``
      + ``re2c:case-ranges`` is a new alias for ``re2c:flags:case-ranges``
      + ``re2c:cond:prefix`` is a new alias for ``re2c:condprefix``
      + ``re2c:cond:enumprefix`` is a new alias for ``re2c:condenumprefix``
      + ``re2c:computed-gotos`` is a new alias for ``re2c:flags:computed-gotos``
      + ``re2c:computed-gotos:threshold`` is a new alias for ``re2c:cgoto:threshold``
      + ``re2c:debug-output`` is a new alias for ``re2c:flags:debug-output``
      + ``re2c:encoding:ebcdic`` is a new alias for ``re2c:flags:ecb``
      + ``re2c:encoding:utf32`` is a new alias for ``re2c:flags:unicode``
      + ``re2c:encoding:ucs2`` is a new alias for ``re2c:flags:wide-chars``
      + ``re2c:encoding:utf16`` is a new alias for ``re2c:flags:utf-16``
      + ``re2c:encoding:utf8`` is a new alias for ``re2c:flags:utf-8``
      + ``re2c:encoding-policy`` is a new alias for ``re2c:flags:encoding-policy``
      + ``re2c:empty-class`` is a new alias for ``re2c:flags:empty-class``
      + ``re2c:header`` is a new alias for ``re2c:flags:type-header``
      + ``re2c:label:prefix`` is a new alias for ``re2c:labelprefix``
      + ``re2c:label:yyfill`` is a new alias for ``re2c:label:yyFillLabel``
      + ``re2c:label:start`` is a new alias for ``re2c:startlabel``
      + ``re2c:nested-ifs`` is a new alias for ``re2c:flags:nested-ifs``
      + ``re2c:posix-captures`` is a new alias for ``re2c:flags:posix-captures``
      + ``re2c:tags`` is a new alias for ``re2c:flags:tags``
      + ``re2c:variable:yych:conversion`` is a new alias for ``re2c:yych:conversion``
      + ``re2c:variable:yych:emit`` is a new alias for ``re2c:yych:emit``
      + ``re2c:variable:yybm:hex`` is a new alias for ``re2c:yybm:hex``
      + ``re2c:unsafe`` is a new alias for ``re2c:flags:unsafe``
    - Added directive alias ``conditions:re2c`` for ``types:re2c``.
    - Multiple small changes in code generation, including some formatting changes
      that result in large diffs in the generated code:
    + Do not allocate indices for unused state labels (this results in a change in
      state enumeration), commits
    + Do not generate redundant ``YYPEEK`` statements, commit
    + Do not generate ``YYDEBUG`` statements for unused states labels, commit
    + C backend: change formatting of switch statements, commit
    + Go backend: render continuous character ranges in compact form, commit
    + Mark start and end of included .re files with line directives, commit
    - A fix to limit maximum allowed NFA and DFA size (to avoid out of memory
      crashes and stack overflows),
    - A fix to correctly compute fixed tags in trailing context, commit
    - A fix to generate non-overlapping names for s-tag and m-tag variables, commit
    - Infrastructural: added support for CMake presets.
    - Updated documentation.
    - Backwards-incompatible changes that are unlikely to affect any users:
      + Restrict lexical contexts where ``%{`` is recognized as a block start,
      + Emit an error when repetition lower bound exceeds upper bound, commit
* Fri Nov 12 2021 dimstar@opensuse.org
  - BuildRequire python3-base instead of full python3: allow to be
    slimmer.
* Mon Nov 08 2021 daniel.donisa@suse.com
  - update 2.2:
    - Added named blocks and block lists in directives.
    - Added local blocks ``/*!local:re2c ... */``.
    - Added in-block ``!include`` directive.
    - Added in-block ``!use`` directive.
    - Allowed reusable blocks without ``-r --reusable`` option.
    - Allowed customizing the generated code with configurations for directives
      ``max:re2c``, ``maxnmatch:re2c``, ``stags:re2c``, ``mtags:re2c`` and
      ``types:re2c`` (see directive descriptions for details).
    - Forbid arbitrary text at the end of ``max:re2c`` directive. This may break
      backwards compatibility, although it is unlikely that this was used by anyone.
      The change was necessary in order to allow customization of the generated code
      with configurations.
    - Deprecated configurations ``flags:i``, ``flags:no-debug-info`` in favour of
      the global options ``-i``, ``--no-debug-info``.
    - Reimplemented re2c test runner in Python (thanks to
      `Serghei Iakovlev <https://github.com/sergeyklay>`_). Improved integration
      with GitHub Actions.
    - Changes in the experimental libre2c library: added new algorithms that
      construct t-string or extract submatch on all repetitions; added TDFA
      benchmark written in Java by Angelo Borsotti.
    - Updated documentation.
  - Add python >= 3.7 dependency required by new tests.
    - Upstream added some tests written in python. The tests failed locally
      because the module dataclasses from python >= 3.7 were missing. On OBS
      the builds failed due to a timeout when trying to run those python tests.
* Sun May 09 2021 dmueller@suse.com
  - update to 2.1.1:
    - Added missing CMakeLists.txt to release tarballs
    - Added GitHub Actions CI for Linux, macOS and Windows and fixed numerous build
      issues on those platforms
    - Added benchmarks for submatch extraction in lexer generators (ragel vs.
      kleenex vs. re2c with TDFA(0), TDFA(1) or sta-DFA algorithms).
      + New CMake options: ``-DRE2C_BUILD_BENCHMARKS``, ``-DRE2C_REGEN_BENCHMARKS``
      + New `json2pgfplot.py
    - Added option ``--depfile <filename>`` to generate build dependency files
    - Added option ``--fixed-tags <none | all | toplevel>`` and improved fixed-tag
      optimization to work with nested tags.
    - Added lzip to the distribution tarballs.
    - Added registerless-TDFA algorithm in the experimental libre2c library.
    - Explicitly disallowed invalid configuration when ``-f``, ``--storable-state``
      option is used, but ``YYFILL`` is disabled
    - Fixed bug in UTF-8 decode for 4-bytes rune
    - Fixed bugs in rare cases of the end-of-input rule ``$`` usage
    - Optimized ``--skeleton`` generation time.
    - Renamed internal option ``--dfa`` to ``--nested-negative-tags``.
    - Updated documentation for end of input handling and submatch extraction.
* Fri Sep 04 2020 dmueller@suse.com
  - update to 2.0.3:
    - Fix issues when building re2c as a CMake subproject
    - Final corrections in the SIMPA article "RE2C: A lexer generator based on
    lookahead-TDFA", https://doi.org/10.1016/j.simpa.2020.100027
* Thu Aug 13 2020 info@paolostivanin.com
  - Update to version 2.0.2:
    * Go backend. The new Go code generation backend can be used either
      with a --lang go re2c option, or as a standalone re2go binary
    * Free-form generic API. Generic API now supports two styles
    * Improved reuse mode and start conditions
    * Backwards incompatible changes:
      + Generic APIs YYSHIFT/YYSHIFTSTAG/YYSHIFTMTAG have been added
      + Generic APIs YYSTAGPD/YYMTAGPD have been removed
      + The re2c:flags:type-header option now treats the header filename
      as relative to the output directory
      + Some internal labels have been renamed, in particular the
      yyFillLabel prefix has been replaced with yyfill
* Wed Feb 05 2020 mpluskal@suse.com
  - Update to version 1.3:
    * Added option: ``--stadfa``.
    * Added warning: ``-Wsentinel-in-midrule``.
    * Added generic API primitives:
      + ``YYSTAGPD``
      + ``YYMTAGPD``
    * Added configurations:
      + ``re2c:sentinel = 0;``
      + ``re2c:define:YYSTAGPD = "YYSTAGPD";``
      + ``re2c:define:YYMTAGPD = "YYMTAGPD";``
    * Worked on reproducible builds
* Wed Aug 14 2019 mpluskal@suse.com
  - Update to version 1.2.1:
    * Lots of changes, see provided CHANGELOG
  - Drop no longer needed re2c-nogenerationdatedefault.patch
  - Enable profile guided optimization during build
* Mon Mar 11 2019 chrisbcoutinho@gmail.com
  - Update re2c to 1.1.1
    * Fixed bug #211 re2c '-V' throws 'std::out_of_range' (version to vernum conversion).
    * Replaced Kuklewicz POSIX disambiguation algorithm with Okui algorithm.
    * Optimized GOR1 algorithm (computation of tagged epsilon-closure).
    * Added option "--conditions" (an alias for "-c" and "--start-conditions").
    * Fixed bug #201 Bugs with option: 're2c:flags:no-debug-info'.
    * Reworked first part of TDFA paper.
* Thu Mar 15 2018 mpluskal@suse.com
  - Modernise spec file with spec-cleaner
* Thu Nov 09 2017 aavindraa@gmail.com
  - Update to version 1.0.3:
    * Fixes build failure on Mac OS X 10.5.8 with gcc 4.2.1
    * Documentation fix
    * 2 examples removed
* Mon Sep 04 2017 mpluskal@suse.com
  - Update to version 1.0.2:
    * Fixed bug #194 “Build with --enable-docs”
    * Updated documentation.
  - Changes for version 1.0.1:
    * Fixed bug #193 “1.0 build failure on macOS: error: calling a
    * private constructor of class ‘re2c::Rule’”
  - Changes for version 1.0:
    * Added several new options
    * Added new inplace confgurations
    * Added warning -Wnondeterministic-tags
    * Added fuzz-testing scripts
    * Added paper “Tagged Deterministic Finite Automata with Lookahead”
    * See provided CHANGELOG for full list of new features
    * Fixed bugs:
      + #121 “trailing contexts are fundamentally broken”
      + #135 “In installation make check give syntax error”
      + #137 “run_tests.sh fail when running configure script with absolute path”
      + #138 “website improvement”
      + #141 “Tests under Windows”
      + #142 “segvault with null terminated input”
      + #145 “Values for enum YYCONDTYPE are not generated when default rules with conditions are used”
      + #147 “Please add symbol name to “can’t find symbol” error message”
      + #152 “Line number in #line directive after enum YYCONDTYPE is 0-based”
      + #156 “Build with Visual Studio 14 2015: symbol name conflict”
      + #158 “Inconsistent forward declaration of struct/class vs definition”
      + #160 “Open text files with “wb” causes issues on Windows”
      + #162 “Reading files with “rb” causes issues in Windows”
      + #165 “Trailing context consumed if initial expression matches it”
      + #176 “re2c help message is too wide for most terminals”
      + #184 “Small documentation issue”
* Sat Jan 30 2016 mpluskal@suse.com
  - Update to 0.16
    * Fixed bug #127 "code generation error with wide chars and
      bitmaps (omitted 'goto' statement)"
    * Added DFA minimization and option '--dfa-minimization
      <table | moore>'
    * Fixed bug #128 "very slow DFA construction (resulting in a very
      large DFA)"
    * Fixed bug #132 "test failure on big endian archs with 0.15.3"
  - Make building more verbose
* Fri Jan 08 2016 tchvatal@suse.com
  - Version update to 0.15.3:
    * Syntax expansion and various updates
    * See CHANGELOG for in-depth details
  - Rebase patch to apply:
    * re2c-nogenerationdatedefault.patch
* Mon Oct 05 2015 mpluskal@suse.com
  - Update to 0.14.3
    * applied patch '#27 re2c crashes reading files containing %{ %}'
    * dropped distfiles for MSVC (they are broken anyway)
  - Changes for 0.14.2
    * fixed #57 Wrong result only if another rule is present
* Fri Mar 13 2015 tchvatal@suse.com
  - Version bump to latest 0.14.1:
    * Plenty of bugfixes all around
* Tue Feb 03 2015 crrodriguez@opensuse.org
  - re2c-nogenerationdatedefault.patch: Default to
    - -no-generation-date to avoid build-compare problems [BNC#915937]
* Thu Dec 11 2014 crrodriguez@opensuse.org
  - make test currently does nothing, make check however
    executes the test suite.
* Thu Dec 11 2014 crrodriguez@opensuse.org
  - version 0.13.7.5
    * Added UTF-8 and UTF-16 support.
    * fixed PHP HEREDOC problems.
* Mon May 12 2014 tchvatal@suse.com
  - Cleanup with spec-cleaner
  - Sort out the %prep finds that are no longer needed.
* Sat Aug 03 2013 crrodriguez@opensuse.org
  - version 0.13.6
    * allow Yacc-style %{code brackets}%
    * allow C++ // comments
    * Fixed inplace configuration in -e mode
    * Fixed Wrong start_label in -c mode.
    * Fixed Unescaped backslash in file name of #line directive
* Fri Sep 09 2011 andrea.turrini@gmail.com
  - Fixed typo in re2c.spec
* Tue Nov 23 2010 cristian.rodriguez@opensuse.org
  -  Use smp_flags
  - when rebuilding the scanner use -g, to generate GCC specific
    code that is slightly faster.
* Thu Jun 26 2008 mmarek@suse.cz
  - updated to version 0.13.5
    * Fixed sf#1952896 Segfault in re2c::Scanner::scan.
    * Fixed sf#1952842 Regression.
* Mon Apr 07 2008 mmarek@suse.cz
  - updated to version 0.13.4
    * Added transparent handling of #line directives in input files.
    * Added re2c:yyfill:check inplace configuration.
    * Added re2c:define:YYSETSTATE:naked inplace configuration.
    * Added re2c:flags:w and re2c:flags:u inplace configurations.
    * Added the ability to add rules in 'use:re2c' blocks.
    * Changed -r flag to accept only 'rules:re2c' and 'use:re2c'
      blocks.
* Mon Mar 17 2008 crrodriguez@suse.de
  - update to version 0.13.3 , required for new PHP language parser
    * Added -r flag to allow reuse of scanner definitions.
    * Added -F flag to support flex syntax in rules.
    * Fixed SEGV in scanner that occurs with very large blocks.
    * Fixed issue with unused yybm.
    * Partial support for flex syntax.
    * Changed to allow /* comments with -c switch.
    * Added flag -D/--emit-dot.
* Mon Feb 04 2008 mmarek@suse.cz
  - updated to version 0.13.1
    * build fixes for non-linux platforms only
* Mon Jun 25 2007 dmueller@suse.de
  - add gcc-c++ buildrequires
* Mon Jun 25 2007 dmueller@suse.de
  - update to versoin 0.13.0:
    * Fixed issue with short form of switches and parameter if not first switch.
    * Fixed #1708378 segfault in actions.cc.
    * Added -c and -t to generate scanners with (f)lex-like condition support.
* Thu May 03 2007 dmueller@suse.de
  - update to version 0.12.0
* Sun Apr 01 2007 mrueckert@suse.de
  - update to version 0.11.3
* Sun Mar 04 2007 mrueckert@suse.de
  - update to version 0.11.2
* Tue Feb 20 2007 mrueckert@suse.de
  - This version fixes a warning in the generated code that some
    compilers issue. No other changes have been made.

Files

/usr/src/debug/re2c-3.0
/usr/src/debug/re2c-3.0/src
/usr/src/debug/re2c-3.0/src/adfa
/usr/src/debug/re2c-3.0/src/adfa/adfa.cc
/usr/src/debug/re2c-3.0/src/adfa/adfa.h
/usr/src/debug/re2c-3.0/src/cfg
/usr/src/debug/re2c-3.0/src/cfg/cfg.cc
/usr/src/debug/re2c-3.0/src/cfg/cfg.h
/usr/src/debug/re2c-3.0/src/cfg/compact.cc
/usr/src/debug/re2c-3.0/src/cfg/dce.cc
/usr/src/debug/re2c-3.0/src/cfg/freeze.cc
/usr/src/debug/re2c-3.0/src/cfg/interfere.cc
/usr/src/debug/re2c-3.0/src/cfg/liveanal.cc
/usr/src/debug/re2c-3.0/src/cfg/normalize.cc
/usr/src/debug/re2c-3.0/src/cfg/optimize.cc
/usr/src/debug/re2c-3.0/src/cfg/rename.cc
/usr/src/debug/re2c-3.0/src/cfg/varalloc.cc
/usr/src/debug/re2c-3.0/src/codegen
/usr/src/debug/re2c-3.0/src/codegen/code.h
/usr/src/debug/re2c-3.0/src/codegen/code_goto.cc
/usr/src/debug/re2c-3.0/src/codegen/combine.cc
/usr/src/debug/re2c-3.0/src/codegen/gen_bitmaps.cc
/usr/src/debug/re2c-3.0/src/codegen/gen_delayed.cc
/usr/src/debug/re2c-3.0/src/codegen/gen_dfa.cc
/usr/src/debug/re2c-3.0/src/codegen/gen_goto.cc
/usr/src/debug/re2c-3.0/src/codegen/gen_program.cc
/usr/src/debug/re2c-3.0/src/codegen/gen_state.cc
/usr/src/debug/re2c-3.0/src/codegen/helpers.cc
/usr/src/debug/re2c-3.0/src/codegen/helpers.h
/usr/src/debug/re2c-3.0/src/codegen/remove_empty.cc
/usr/src/debug/re2c-3.0/src/codegen/render.cc
/usr/src/debug/re2c-3.0/src/compile.cc
/usr/src/debug/re2c-3.0/src/compile.h
/usr/src/debug/re2c-3.0/src/constants.h
/usr/src/debug/re2c-3.0/src/debug
/usr/src/debug/re2c-3.0/src/debug/debug.h
/usr/src/debug/re2c-3.0/src/debug/dump_adfa.cc
/usr/src/debug/re2c-3.0/src/debug/dump_cfg.cc
/usr/src/debug/re2c-3.0/src/debug/dump_dfa.cc
/usr/src/debug/re2c-3.0/src/debug/dump_dfa_tree.cc
/usr/src/debug/re2c-3.0/src/debug/dump_interf.cc
/usr/src/debug/re2c-3.0/src/debug/dump_nfa.cc
/usr/src/debug/re2c-3.0/src/dfa
/usr/src/debug/re2c-3.0/src/dfa/closure.cc
/usr/src/debug/re2c-3.0/src/dfa/closure_leftmost.h
/usr/src/debug/re2c-3.0/src/dfa/closure_posix.h
/usr/src/debug/re2c-3.0/src/dfa/dead_rules.cc
/usr/src/debug/re2c-3.0/src/dfa/determinization.cc
/usr/src/debug/re2c-3.0/src/dfa/determinization.h
/usr/src/debug/re2c-3.0/src/dfa/dfa.h
/usr/src/debug/re2c-3.0/src/dfa/fallback_tags.cc
/usr/src/debug/re2c-3.0/src/dfa/fillpoints.cc
/usr/src/debug/re2c-3.0/src/dfa/find_state.cc
/usr/src/debug/re2c-3.0/src/dfa/minimization.cc
/usr/src/debug/re2c-3.0/src/dfa/posix_precedence.h
/usr/src/debug/re2c-3.0/src/dfa/stacmd.cc
/usr/src/debug/re2c-3.0/src/dfa/stacmd.h
/usr/src/debug/re2c-3.0/src/dfa/tag_history.h
/usr/src/debug/re2c-3.0/src/dfa/tagver_table.cc
/usr/src/debug/re2c-3.0/src/dfa/tagver_table.h
/usr/src/debug/re2c-3.0/src/dfa/tcmd.cc
/usr/src/debug/re2c-3.0/src/dfa/tcmd.h
/usr/src/debug/re2c-3.0/src/encoding
/usr/src/debug/re2c-3.0/src/encoding/case.h
/usr/src/debug/re2c-3.0/src/encoding/ebcdic
/usr/src/debug/re2c-3.0/src/encoding/ebcdic/ebcdic.h
/usr/src/debug/re2c-3.0/src/encoding/ebcdic/ebcdic_regexp.cc
/usr/src/debug/re2c-3.0/src/encoding/ebcdic/ebcdic_regexp.h
/usr/src/debug/re2c-3.0/src/encoding/enc.cc
/usr/src/debug/re2c-3.0/src/encoding/enc.h
/usr/src/debug/re2c-3.0/src/encoding/range_suffix.cc
/usr/src/debug/re2c-3.0/src/encoding/range_suffix.h
/usr/src/debug/re2c-3.0/src/encoding/utf16
/usr/src/debug/re2c-3.0/src/encoding/utf16/utf16.cc
/usr/src/debug/re2c-3.0/src/encoding/utf16/utf16.h
/usr/src/debug/re2c-3.0/src/encoding/utf16/utf16_regexp.cc
/usr/src/debug/re2c-3.0/src/encoding/utf16/utf16_regexp.h
/usr/src/debug/re2c-3.0/src/encoding/utf8
/usr/src/debug/re2c-3.0/src/encoding/utf8/utf8.cc
/usr/src/debug/re2c-3.0/src/encoding/utf8/utf8.h
/usr/src/debug/re2c-3.0/src/encoding/utf8/utf8_regexp.cc
/usr/src/debug/re2c-3.0/src/encoding/utf8/utf8_regexp.h
/usr/src/debug/re2c-3.0/src/main.cc
/usr/src/debug/re2c-3.0/src/msg
/usr/src/debug/re2c-3.0/src/msg/help.cc
/usr/src/debug/re2c-3.0/src/msg/location.h
/usr/src/debug/re2c-3.0/src/msg/msg.cc
/usr/src/debug/re2c-3.0/src/msg/msg.h
/usr/src/debug/re2c-3.0/src/msg/ver_to_vernum.cc
/usr/src/debug/re2c-3.0/src/msg/ver_to_vernum.h
/usr/src/debug/re2c-3.0/src/msg/warn.cc
/usr/src/debug/re2c-3.0/src/msg/warn.h
/usr/src/debug/re2c-3.0/src/nfa
/usr/src/debug/re2c-3.0/src/nfa/estimate_size.cc
/usr/src/debug/re2c-3.0/src/nfa/nfa.h
/usr/src/debug/re2c-3.0/src/nfa/re_to_nfa.cc
/usr/src/debug/re2c-3.0/src/options
/usr/src/debug/re2c-3.0/src/options/opt.cc
/usr/src/debug/re2c-3.0/src/options/opt.h
/usr/src/debug/re2c-3.0/src/options/parse_opts.cc
/usr/src/debug/re2c-3.0/src/options/symtab.cc
/usr/src/debug/re2c-3.0/src/options/symtab.h
/usr/src/debug/re2c-3.0/src/parse
/usr/src/debug/re2c-3.0/src/parse/ast.cc
/usr/src/debug/re2c-3.0/src/parse/ast.h
/usr/src/debug/re2c-3.0/src/parse/input.cc
/usr/src/debug/re2c-3.0/src/parse/input.h
/usr/src/debug/re2c-3.0/src/parse/lex.cc
/usr/src/debug/re2c-3.0/src/parse/lex.h
/usr/src/debug/re2c-3.0/src/parse/lex_conf.cc
/usr/src/debug/re2c-3.0/src/parse/parse.cc
/usr/src/debug/re2c-3.0/src/parse/parse.h
/usr/src/debug/re2c-3.0/src/parse/parser.cc
/usr/src/debug/re2c-3.0/src/parse/parser.h
/usr/src/debug/re2c-3.0/src/parse/parser.ypp
/usr/src/debug/re2c-3.0/src/parse/scanner.cc
/usr/src/debug/re2c-3.0/src/parse/scanner.h
/usr/src/debug/re2c-3.0/src/parse/unescape.cc
/usr/src/debug/re2c-3.0/src/parse/unescape.h
/usr/src/debug/re2c-3.0/src/regexp
/usr/src/debug/re2c-3.0/src/regexp/ast_to_re.cc
/usr/src/debug/re2c-3.0/src/regexp/default_tags.cc
/usr/src/debug/re2c-3.0/src/regexp/fixed_tags.cc
/usr/src/debug/re2c-3.0/src/regexp/nullable.cc
/usr/src/debug/re2c-3.0/src/regexp/re.cc
/usr/src/debug/re2c-3.0/src/regexp/re.h
/usr/src/debug/re2c-3.0/src/regexp/rule.cc
/usr/src/debug/re2c-3.0/src/regexp/rule.h
/usr/src/debug/re2c-3.0/src/regexp/split_charset.cc
/usr/src/debug/re2c-3.0/src/regexp/tag.cc
/usr/src/debug/re2c-3.0/src/regexp/tag.h
/usr/src/debug/re2c-3.0/src/skeleton
/usr/src/debug/re2c-3.0/src/skeleton/control_flow.cc
/usr/src/debug/re2c-3.0/src/skeleton/generate_code.cc
/usr/src/debug/re2c-3.0/src/skeleton/generate_data.cc
/usr/src/debug/re2c-3.0/src/skeleton/maxpath.cc
/usr/src/debug/re2c-3.0/src/skeleton/mtag_trie.h
/usr/src/debug/re2c-3.0/src/skeleton/path.h
/usr/src/debug/re2c-3.0/src/skeleton/skeleton.cc
/usr/src/debug/re2c-3.0/src/skeleton/skeleton.h
/usr/src/debug/re2c-3.0/src/test
/usr/src/debug/re2c-3.0/src/test/range
/usr/src/debug/re2c-3.0/src/test/range/test.h
/usr/src/debug/re2c-3.0/src/util
/usr/src/debug/re2c-3.0/src/util/allocate.h
/usr/src/debug/re2c-3.0/src/util/file_utils.cc
/usr/src/debug/re2c-3.0/src/util/file_utils.h
/usr/src/debug/re2c-3.0/src/util/fixed_allocator.h
/usr/src/debug/re2c-3.0/src/util/free_list.h
/usr/src/debug/re2c-3.0/src/util/hash32.h
/usr/src/debug/re2c-3.0/src/util/local_increment.h
/usr/src/debug/re2c-3.0/src/util/lookup.h
/usr/src/debug/re2c-3.0/src/util/range.cc
/usr/src/debug/re2c-3.0/src/util/range.h
/usr/src/debug/re2c-3.0/src/util/s_to_n32_unsafe.cc
/usr/src/debug/re2c-3.0/src/util/s_to_n32_unsafe.h
/usr/src/debug/re2c-3.0/src/util/slab_allocator.h
/usr/src/debug/re2c-3.0/src/util/smart_ptr.h
/usr/src/debug/re2c-3.0/src/util/static_assert.h
/usr/src/debug/re2c-3.0/src/util/string_utils.h
/usr/src/debug/re2c-3.0/src/util/temp_file.cc
/usr/src/debug/re2c-3.0/src/util/temp_file.h
/usr/src/debug/re2c-3.0/src/util/u32lim.h
/usr/src/debug/re2c-3.0/src/util/uniq_vector.h


Generated by rpm2html 1.8.1

Fabrice Bellet, Thu Jul 18 00:25:40 2024