max tokens

~2235 tokens

├── .checksrc
├── .github
    ├── dependabot.yml
    └── workflows
    │   ├── build.yml
    │   ├── checksrc.yml
    │   ├── codeql.yml
    │   ├── curl-for-win.yml
    │   └── requirements.txt
├── .gitignore
├── CMakeLists.txt
├── CONTRIBUTING.md
├── COPYING
├── LICENSES
    └── curl.txt
├── Makefile
├── README.md
├── RELEASE-NOTES
├── RELEASE-PROCEDURE.md
├── REUSE.toml
├── SECURITY.md
├── THANKS
├── URL-QUIRKS.md
├── scripts
    ├── _trurl.zsh.in
    ├── cd2nroff
    ├── checksrc.pl
    ├── generate_completions.sh
    ├── mkrelease
    └── spacecheck.pl
├── test.py
├── testfiles
    ├── test0000.txt
    ├── test0001.txt
    └── test0002.txt
├── tests.json
├── trurl.c
├── trurl.md
├── version.h
└── winbuild
    ├── .gitattributes
    ├── .vcpkg
    ├── README.md
    ├── trurl.sln
    ├── trurl.vcxproj
    ├── vcpkg-configuration.json
    └── vcpkg.json


/.checksrc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/curl/trurl/HEAD/.checksrc


--------------------------------------------------------------------------------
/.github/dependabot.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/curl/trurl/HEAD/.github/dependabot.yml


--------------------------------------------------------------------------------
/.github/workflows/build.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/curl/trurl/HEAD/.github/workflows/build.yml


--------------------------------------------------------------------------------
/.github/workflows/checksrc.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/curl/trurl/HEAD/.github/workflows/checksrc.yml


--------------------------------------------------------------------------------
/.github/workflows/codeql.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/curl/trurl/HEAD/.github/workflows/codeql.yml


--------------------------------------------------------------------------------
/.github/workflows/curl-for-win.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/curl/trurl/HEAD/.github/workflows/curl-for-win.yml


--------------------------------------------------------------------------------
/.github/workflows/requirements.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/curl/trurl/HEAD/.github/workflows/requirements.txt


--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/curl/trurl/HEAD/.gitignore


--------------------------------------------------------------------------------
/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/curl/trurl/HEAD/CMakeLists.txt


--------------------------------------------------------------------------------
/CONTRIBUTING.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/curl/trurl/HEAD/CONTRIBUTING.md


--------------------------------------------------------------------------------
/COPYING:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/curl/trurl/HEAD/COPYING


--------------------------------------------------------------------------------
/LICENSES/curl.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/curl/trurl/HEAD/LICENSES/curl.txt


--------------------------------------------------------------------------------
/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/curl/trurl/HEAD/Makefile


--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/curl/trurl/HEAD/README.md


--------------------------------------------------------------------------------
/RELEASE-NOTES:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/curl/trurl/HEAD/RELEASE-NOTES


--------------------------------------------------------------------------------
/RELEASE-PROCEDURE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/curl/trurl/HEAD/RELEASE-PROCEDURE.md


--------------------------------------------------------------------------------
/REUSE.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/curl/trurl/HEAD/REUSE.toml


--------------------------------------------------------------------------------
/SECURITY.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/curl/trurl/HEAD/SECURITY.md


--------------------------------------------------------------------------------
/THANKS:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/curl/trurl/HEAD/THANKS


--------------------------------------------------------------------------------
/URL-QUIRKS.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/curl/trurl/HEAD/URL-QUIRKS.md


--------------------------------------------------------------------------------
/scripts/_trurl.zsh.in:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/curl/trurl/HEAD/scripts/_trurl.zsh.in


--------------------------------------------------------------------------------
/scripts/cd2nroff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/curl/trurl/HEAD/scripts/cd2nroff


--------------------------------------------------------------------------------
/scripts/checksrc.pl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/curl/trurl/HEAD/scripts/checksrc.pl


--------------------------------------------------------------------------------
/scripts/generate_completions.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/curl/trurl/HEAD/scripts/generate_completions.sh


--------------------------------------------------------------------------------
/scripts/mkrelease:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/curl/trurl/HEAD/scripts/mkrelease


--------------------------------------------------------------------------------
/scripts/spacecheck.pl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/curl/trurl/HEAD/scripts/spacecheck.pl


--------------------------------------------------------------------------------
/test.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/curl/trurl/HEAD/test.py


--------------------------------------------------------------------------------
/testfiles/test0000.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/curl/trurl/HEAD/testfiles/test0000.txt


--------------------------------------------------------------------------------
/testfiles/test0001.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/curl/trurl/HEAD/testfiles/test0001.txt


--------------------------------------------------------------------------------
/testfiles/test0002.txt:
--------------------------------------------------------------------------------
1 | 


--------------------------------------------------------------------------------
/tests.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/curl/trurl/HEAD/tests.json


--------------------------------------------------------------------------------
/trurl.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/curl/trurl/HEAD/trurl.c


--------------------------------------------------------------------------------
/trurl.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/curl/trurl/HEAD/trurl.md


--------------------------------------------------------------------------------
/version.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/curl/trurl/HEAD/version.h


--------------------------------------------------------------------------------
/winbuild/.gitattributes:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/curl/trurl/HEAD/winbuild/.gitattributes


--------------------------------------------------------------------------------
/winbuild/.vcpkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/curl/trurl/HEAD/winbuild/.vcpkg


--------------------------------------------------------------------------------
/winbuild/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/curl/trurl/HEAD/winbuild/README.md


--------------------------------------------------------------------------------
/winbuild/trurl.sln:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/curl/trurl/HEAD/winbuild/trurl.sln


--------------------------------------------------------------------------------
/winbuild/trurl.vcxproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/curl/trurl/HEAD/winbuild/trurl.vcxproj


--------------------------------------------------------------------------------
/winbuild/vcpkg-configuration.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/curl/trurl/HEAD/winbuild/vcpkg-configuration.json


--------------------------------------------------------------------------------
/winbuild/vcpkg.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/curl/trurl/HEAD/winbuild/vcpkg.json


--------------------------------------------------------------------------------