https://github.com/git/git
Revision 2ef691e8bafe22987237278f5ea4979330327879 authored by Jose F. Morales on 22 August 2015, 23:10:35 UTC, committed by Johannes Schindelin on 28 August 2015, 09:40:10 UTC
The code to open and test the second end of the pipe clearly imitates
the code for the first end. A little too closely, though... Let's fix
the obvious copy-edit bug.

Signed-off-by: Jose F. Morales <jfmcjf@gmail.com>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent 52f6893
Raw File
Tip revision: 2ef691e8bafe22987237278f5ea4979330327879 authored by Jose F. Morales on 22 August 2015, 23:10:35 UTC
Mingw: verify both ends of the pipe () call
Tip revision: 2ef691e
list-objects.h
#ifndef LIST_OBJECTS_H
#define LIST_OBJECTS_H

typedef void (*show_commit_fn)(struct commit *, void *);
typedef void (*show_object_fn)(struct object *, const struct name_path *, const char *, void *);
void traverse_commit_list(struct rev_info *, show_commit_fn, show_object_fn, void *);

typedef void (*show_edge_fn)(struct commit *);
void mark_edges_uninteresting(struct rev_info *, show_edge_fn);

#endif
back to top