bisect: libify `bisect_next_all`
authorPranit Bauva <redacted>
Mon, 17 Feb 2020 08:40:39 +0000 (09:40 +0100)
committerJunio C Hamano <redacted>
Wed, 19 Feb 2020 17:37:15 +0000 (09:37 -0800)
commit6c69f2223394c200cce1289ac9200f781ef14da7
tree4ff24604812d64f157adc04540719131f78b23e5
parent9ec598e0d55ff263e47d95e7d4decef1eb1b6ac6
bisect: libify `bisect_next_all`

Since we want to get rid of git-bisect.sh, it would be necessary to
convert those exit() calls to return statements so that errors can be
reported.

Emulate try catch in C by converting `exit(<positive-value>)` to
`return <negative-value>`. Follow POSIX conventions to return
<negative-value> to indicate error.

All the functions calling `bisect_next_all()` are already able to
handle return values from it.

Mentored-by: Christian Couder <redacted>
Mentored-by: Johannes Schindelin <redacted>
Signed-off-by: Pranit Bauva <redacted>
Signed-off-by: Tanushree Tumane <redacted>
Signed-off-by: Miriam Rubio <redacted>
Signed-off-by: Junio C Hamano <redacted>
bisect.c
bisect.h
git clone https://git.99rst.org/PROJECT