summaryrefslogtreecommitdiff
path: root/examples/common.h
Commit message (Collapse)AuthorAgeFilesLines
* examples: move MSVC compatibility macros into common headerPatrick Steinhardt2019-04-161-0/+5
| | | | | | | We currently have two locations in our examples where we define the same compatibility wrappers for MSVC. Move them into "common.h" to avoid duplication and make them available to other examples.
* examples: create common lg2 executablePatrick Steinhardt2019-02-151-5/+24
| | | | | | | | | | | | | | | | | | Inside of our networking example code, we have a git2 executable that acts as an entry point to all the different network examples. As such, it is kind of the same like the normal git(1) executable in that it simply arbitrates to the respective subcommands. Let's extend this approach and merge all examples into a single standalone lg2 executable. Instead of building an executable for all the existing examples we have, we now bundle them all inside of the lg2 one and let them be callable via subcommands. In the process, we can get rid of duplicated library initialization, deinitialization and repository discovery code. Instead of having each subcommand handle these on its own, we simply do it inside of the single main function now.
* examples: merge common network codePatrick Steinhardt2019-02-151-0/+25
| | | | | | | | | | | | Right now, we have two sets of "common" code, one containing general common code and one containing network common code. As we intend to get rid of the network subdirectory and instead merge all examples into a single standalone executable, this distinction doesn't make a lot of sense now. Furthermore, the common network code is not that big. Let's get rid of the common network code by merging it into the general common code.
* examples: add a helper for boolean-style optionsEtienne Samson2018-07-071-0/+9
|
* examples: move refish resolution function in commonEtienne Samson2018-07-071-0/+5
|
* examples: Move xrealloc to common example codeEtienne Samson2018-01-251-0/+5
|
* examples: diff: parse correct types for line-diffoptsPatrick Steinhardt2016-10-101-0/+9
|
* describe: add exampleLinquize2014-10-121-0/+9
|
* Replace copyright topmatter in example filesBen Straub2013-11-021-3/+10
|
* Extract common example helpers and reorg examplesRussell Belfer2013-10-291-0/+80
This reorganizes a few of the examples so that the main function comes first with the argument parsing extracted into a helper that can come at the end of the file (so the example focuses more on the use of libgit2 instead of command line support). This also creates a shared examples/common.[ch] so that useful helper funcs can be shared across examples instead of repeated.