This library holds utility functions for working with string buffers in C.
Перейти к файлу
brian m. carlson b616b6efd9
Merge pull request #2 from github/update_security_doc
Update SECURITY.md with current guidelines
2023-04-13 14:53:54 +00:00
.github/workflows import libbuffer 2021-01-06 14:53:51 +00:00
include/github import libbuffer 2021-01-06 14:53:51 +00:00
src import libbuffer 2021-01-06 14:53:51 +00:00
test import libbuffer 2021-01-06 14:53:51 +00:00
.gitignore import libbuffer 2021-01-06 14:53:51 +00:00
CODE_OF_CONDUCT.md import libbuffer 2021-01-06 14:53:51 +00:00
CONTRIBUTING.md import libbuffer 2021-01-06 14:53:51 +00:00
COPYING import libbuffer 2021-01-06 14:53:51 +00:00
Dockerfile.cibuild import libbuffer 2021-01-06 14:53:51 +00:00
Makefile import libbuffer 2021-01-06 14:53:51 +00:00
README.md add some docs for building and testing the library 2021-01-06 15:19:19 +00:00
SECURITY.md Update SECURITY.md with current guidelines for GitHub-owned open source repositories 2023-04-13 10:40:17 -04:00

README.md

libbuffer

This library holds utility functions for working with string buffers in C.

The library has been extracted from libgit2 internal functions, and to make them available for use for other programs, and is used in production at GitHub.

Building

To build this library use make, which will generate the libbuffer.so.0 shared library.

Similarly, to install it on your system, you can use make install.

The tests can be run using make test.

License

libbuffer is under GPL2 with linking exception. This means you can link to and use the library from any program, proprietary or open source; paid or gratis. However, if you modify libbuffer itself, you must distribute the source to your modified version of libbuffer.

See the COPYING file for the full license text.