https://github.com/git/git
Revision 19d6eb412cd6f47960737dd66bf1d1866e26986f authored by Jason St. John on 15 November 2013, 01:34:02 UTC, committed by Junio C Hamano on 18 November 2013, 21:38:43 UTC
Various fixes:

 - fix typos (e.g. "show" -> "shown")
 - use "regular expression(s)" instead of "regexp" where appropriate
 - reword some sentences for easier reading
 - fix/improve some grammatical issues (e.g. comma usage)
 - add missing articles (e.g. "the")
 - change "E-mail" to "email"

Signed-off-by: Jason St. John <jstjohn@purdue.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 4528aa1
Raw File
Tip revision: 19d6eb412cd6f47960737dd66bf1d1866e26986f authored by Jason St. John on 15 November 2013, 01:34:02 UTC
Documentation/rev-list-options.txt: fix some grammatical issues and typos
Tip revision: 19d6eb4
patch-ids.h
#ifndef PATCH_IDS_H
#define PATCH_IDS_H

struct patch_id {
	unsigned char patch_id[20];
	char seen;
};

struct patch_ids {
	struct diff_options diffopts;
	int nr, alloc;
	struct patch_id **table;
	struct patch_id_bucket *patches;
};

int init_patch_ids(struct patch_ids *);
int free_patch_ids(struct patch_ids *);
struct patch_id *add_commit_patch_id(struct commit *, struct patch_ids *);
struct patch_id *has_commit_patch_id(struct commit *, struct patch_ids *);

#endif /* PATCH_IDS_H */
back to top